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/zchola.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/zchola.c')
-rw-r--r-- | src/matrixOperations/chol/zchola.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/matrixOperations/chol/zchola.c b/src/matrixOperations/chol/zchola.c index 724ff646..ce6543ff 100644 --- a/src/matrixOperations/chol/zchola.c +++ b/src/matrixOperations/chol/zchola.c @@ -50,8 +50,6 @@ void zchola(doubleComplex * in, int size, doubleComplex *out){ doubleComplex tmp,transposee; double accu; - for (i=0;i<size*size;i++) out[i]=DoubleComplex(0,0); /* Voir si on peut l'enlever */ - for (i=0;i<size;i++){ accu=0.0f; for (j=0;j<i;j++){ |