diff options
author | siddhu8990 | 2017-06-21 15:18:15 +0530 |
---|---|---|
committer | siddhu8990 | 2017-06-21 15:18:15 +0530 |
commit | 9abc909f1a02c7c0262e2d53b13504c7ee324fda (patch) | |
tree | ba4dfe442b9735204ede017eb0d20f179a5c4b4e /2.3-1/src/c/matrixOperations/cat/ccata.c | |
parent | 34bffcd2d147db6733499af5b6f32996d847a733 (diff) | |
parent | 5efb98c6773576e39a33df5cfc89979c07031a6a (diff) | |
download | Scilab2C-9abc909f1a02c7c0262e2d53b13504c7ee324fda.tar.gz Scilab2C-9abc909f1a02c7c0262e2d53b13504c7ee324fda.tar.bz2 Scilab2C-9abc909f1a02c7c0262e2d53b13504c7ee324fda.zip |
Merged Ukasha's work, code generation for control loop changed
Diffstat (limited to '2.3-1/src/c/matrixOperations/cat/ccata.c')
-rw-r--r-- | 2.3-1/src/c/matrixOperations/cat/ccata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/2.3-1/src/c/matrixOperations/cat/ccata.c b/2.3-1/src/c/matrixOperations/cat/ccata.c index a6ac6cf0..cd2b4c92 100644 --- a/2.3-1/src/c/matrixOperations/cat/ccata.c +++ b/2.3-1/src/c/matrixOperations/cat/ccata.c @@ -26,7 +26,7 @@ void crowcata(floatComplex *in1, int lines1, int columns1, floatComplex *in2, i { 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) { |