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/schola.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/schola.c')
-rw-r--r-- | src/matrixOperations/chol/schola.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/matrixOperations/chol/schola.c b/src/matrixOperations/chol/schola.c index 4a2121d8..1c9e9a6e 100644 --- a/src/matrixOperations/chol/schola.c +++ b/src/matrixOperations/chol/schola.c @@ -52,8 +52,6 @@ void schola(float * in, int size, float *out){ int i=0, j=0, k=0; float 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; for (j=0;j<i;j++){ |