diff options
author | siddhu8990 | 2015-09-11 02:28:56 +0530 |
---|---|---|
committer | siddhu8990 | 2015-09-11 02:28:56 +0530 |
commit | fa48de77a489b8b6e7c5cb335b8dc55721cf2a28 (patch) | |
tree | 5c026f0f1c5115b99b6cee80c510b3e9afb3e6c6 /src/c/matrixOperations/cat/zcata.c | |
parent | 9f6b12fae887eb141b6afd0fc56c7367c82efb70 (diff) | |
download | Scilab2C_fossee_old-fa48de77a489b8b6e7c5cb335b8dc55721cf2a28.tar.gz Scilab2C_fossee_old-fa48de77a489b8b6e7c5cb335b8dc55721cf2a28.tar.bz2 Scilab2C_fossee_old-fa48de77a489b8b6e7c5cb335b8dc55721cf2a28.zip |
Changes made for making directory 'arduino' in output folder'
Diffstat (limited to 'src/c/matrixOperations/cat/zcata.c')
-rw-r--r-- | src/c/matrixOperations/cat/zcata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/matrixOperations/cat/zcata.c b/src/c/matrixOperations/cat/zcata.c index 485553d..30d50ee 100644 --- a/src/c/matrixOperations/cat/zcata.c +++ b/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) { |