diff options
author | torset | 2009-01-23 15:46:09 +0000 |
---|---|---|
committer | torset | 2009-01-23 15:46:09 +0000 |
commit | 532ad3757194e8c47e05d342093eff945e0f219c (patch) | |
tree | db68ea2a5eb8b575017877bba5892873ff98e280 /src/matrixOperations/chol/cchola.c | |
parent | 4ea71f0396f305cc9eb96d28886354237f30412a (diff) | |
download | scilab2c-532ad3757194e8c47e05d342093eff945e0f219c.tar.gz scilab2c-532ad3757194e8c47e05d342093eff945e0f219c.tar.bz2 scilab2c-532ad3757194e8c47e05d342093eff945e0f219c.zip |
adjusting some functions
Diffstat (limited to 'src/matrixOperations/chol/cchola.c')
-rw-r--r-- | src/matrixOperations/chol/cchola.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/matrixOperations/chol/cchola.c b/src/matrixOperations/chol/cchola.c index 6a456188..a00718c1 100644 --- a/src/matrixOperations/chol/cchola.c +++ b/src/matrixOperations/chol/cchola.c @@ -60,8 +60,6 @@ void cchola(floatComplex * in, int size, floatComplex *out){ int i=0, j=0, k=0; floatComplex tmp,transposee; float accu; - - for (i=0;i<size*size;i++) out[i]=FloatComplex(0,0); /* Voir si on peut l'enlever */ for (i=0;i<size;i++){ accu=0.0f; |