diff options
author | Siddhesh Wani | 2017-06-21 15:15:46 +0530 |
---|---|---|
committer | GitHub | 2017-06-21 15:15:46 +0530 |
commit | fb56458ea04849e82f41d9c0f5c817a22839f848 (patch) | |
tree | f504c068fe6763f6cf32735e9107cc357c2655a7 /2.3-1/src/c/matrixOperations/cat | |
parent | 0051253bc224286c118c080c79eaed5bf611bd35 (diff) | |
parent | 33e4ef72e7f712eb34a0a87e7b45fcca7d08393c (diff) | |
download | Scilab2C-fb56458ea04849e82f41d9c0f5c817a22839f848.tar.gz Scilab2C-fb56458ea04849e82f41d9c0f5c817a22839f848.tar.bz2 Scilab2C-fb56458ea04849e82f41d9c0f5c817a22839f848.zip |
Merge pull request #9 from sandeepgupta007/master
Linear Algebra - Functions Updated
Diffstat (limited to '2.3-1/src/c/matrixOperations/cat')
-rw-r--r-- | 2.3-1/src/c/matrixOperations/cat/zcata.c | 2 |
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) { |