summaryrefslogtreecommitdiff
path: root/src/matrixOperations/includes/chol.h
diff options
context:
space:
mode:
authortorset2008-12-11 15:11:01 +0000
committertorset2008-12-11 15:11:01 +0000
commit1afd94c34278353308dba0a6af6bd4ff14259f47 (patch)
tree7fcecb9419924ddfbd18d74ac343085979e1b26e /src/matrixOperations/includes/chol.h
parentb7a3dd21939af365c7e61d1ced02e6586f3cb834 (diff)
downloadscilab2c-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.h14
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__ */