summaryrefslogtreecommitdiff
path: root/src/c/matrixOperations
diff options
context:
space:
mode:
authorsiddhu89902015-09-11 02:28:56 +0530
committersiddhu89902015-09-11 02:28:56 +0530
commitfa48de77a489b8b6e7c5cb335b8dc55721cf2a28 (patch)
tree5c026f0f1c5115b99b6cee80c510b3e9afb3e6c6 /src/c/matrixOperations
parent9f6b12fae887eb141b6afd0fc56c7367c82efb70 (diff)
downloadScilab2C_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')
-rw-r--r--src/c/matrixOperations/cat/ccata.c2
-rw-r--r--src/c/matrixOperations/cat/zcata.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/c/matrixOperations/cat/ccata.c b/src/c/matrixOperations/cat/ccata.c
index cd2b4c9..88106a8 100644
--- a/src/c/matrixOperations/cat/ccata.c
+++ b/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)
{
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)
{