00001 00029 #ifndef CHOLESKY_H 00030 #define CHOLESKY_H 00031 00032 #include <itpp/base/mat.h> 00033 00034 00035 namespace itpp 00036 { 00037 00040 00041 00054 bool chol(const mat &X, mat &F); 00055 00066 mat chol(const mat &X); 00067 00068 00085 bool chol(const cmat &X, cmat &F); 00086 00097 cmat chol(const cmat &X); 00098 00100 00101 } // namespace itpp 00102 00103 #endif // #ifndef CHOLESKY_H