summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/matrixOperations/cat/zcata.c
diff options
context:
space:
mode:
Diffstat (limited to '2.3-1/src/c/matrixOperations/cat/zcata.c')
-rw-r--r--2.3-1/src/c/matrixOperations/cat/zcata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/2.3-1/src/c/matrixOperations/cat/zcata.c b/2.3-1/src/c/matrixOperations/cat/zcata.c
index bfb6e922..485553d7 100644
--- a/2.3-1/src/c/matrixOperations/cat/zcata.c
+++ b/2.3-1/src/c/matrixOperations/cat/zcata.c
@@ -26,7 +26,7 @@ void zrowcata(doubleComplex *in1, int lines1, int columns1, doubleComplex *in2,
{
for (j = 0 ; j < lines1 ; ++j)
{
- /*out[i*(lines1 + lines2) + j] = in1[i*lines1 + j];*/
+ out[i*(lines1 + lines2) + j] = in1[i*lines1 + j];
}
for (j = 0 ; j < lines2 ; ++j)
{