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/dchola.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/dchola.c')
-rw-r--r-- | src/matrixOperations/chol/dchola.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/matrixOperations/chol/dchola.c b/src/matrixOperations/chol/dchola.c index 918c790a..a35f90b2 100644 --- a/src/matrixOperations/chol/dchola.c +++ b/src/matrixOperations/chol/dchola.c @@ -44,7 +44,6 @@ void dchola(double * in, int size, double *out){ int i=0, j=0, k=0; double tmp=0, accu=0; - for (i=0;i<size*size;i++) out[i]=0; /* Voir si on peut l'enlever */ for (i=0;i<size;i++){ accu=0; |