IT++ Logo

svd.h

Go to the documentation of this file.
00001 
00030 #ifndef SVD_H
00031 #define SVD_H
00032 
00033 #include <itpp/base/mat.h>
00034 
00035 
00036 namespace itpp {
00037 
00053   bool svd(const mat &A, vec &S);
00054 
00070   bool svd(const cmat &A, vec &S);
00071 
00087   vec svd(const mat &A);
00088 
00104   vec svd(const cmat &A);
00105 
00121   bool svd(const mat &A, mat &U, vec &S, mat &V);
00122 
00138   bool svd(const cmat &A, cmat &U, vec &S, cmat &V);
00139 
00140 
00141 } // namespace itpp
00142 
00143 #endif // #ifndef SVD_H
SourceForge Logo

Generated on Sun Dec 9 17:38:39 2007 for IT++ by Doxygen 1.5.4