diff options
author | torset | 2008-12-11 15:11:01 +0000 |
---|---|---|
committer | torset | 2008-12-11 15:11:01 +0000 |
commit | 1afd94c34278353308dba0a6af6bd4ff14259f47 (patch) | |
tree | 7fcecb9419924ddfbd18d74ac343085979e1b26e /src/matrixOperations/includes/chol.h | |
parent | b7a3dd21939af365c7e61d1ced02e6586f3cb834 (diff) | |
download | scilab2c-1afd94c34278353308dba0a6af6bd4ff14259f47.tar.gz scilab2c-1afd94c34278353308dba0a6af6bd4ff14259f47.tar.bz2 scilab2c-1afd94c34278353308dba0a6af6bd4ff14259f47.zip |
Modify includes in chol.h
Diffstat (limited to 'src/matrixOperations/includes/chol.h')
-rw-r--r-- | src/matrixOperations/includes/chol.h | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/matrixOperations/includes/chol.h b/src/matrixOperations/includes/chol.h index 0bca20d9..03a678d8 100644 --- a/src/matrixOperations/includes/chol.h +++ b/src/matrixOperations/includes/chol.h @@ -14,26 +14,20 @@ #ifndef __CHOL_H__ #define __CHOL_H__ -#include "lapack.h" #include "doubleComplex.h" #include "floatComplex.h" - /* - chol : L-U decomposition of square matrix using Cholesky algorithm - param in : input matrix (square matrix) - param size : number of rows or columns - param out : output matrix - */ + double dchols (double in); void dchola (double *in, int size, double *out); - /* -void schols (float in, float out1); + +float schols (float in); void schola (float *in, int size, float *out); void zchola (doubleComplex *in, int size, doubleComplex *out); -void cchola (floatComplex *in, int size, floatComplex *out); */ +void cchola (floatComplex *in, int size, floatComplex *out); #endif /* __CHOL_H__ */ |