00001 00029 #ifndef INV_H 00030 #define INV_H 00031 00032 #include <itpp/base/mat.h> 00033 00034 00035 namespace itpp 00036 { 00037 00047 bool inv(const mat &X, mat &Y); 00048 00058 mat inv(const mat &X); 00059 00060 00070 bool inv(const cmat &X, cmat &Y); 00071 00081 cmat inv(const cmat &X); 00082 00083 00084 } // namespace itpp 00085 00086 #endif // #ifndef INV_H