source: cpp/frams/model/similarity/SVD/lapack.h @ 349

Last change on this file since 349 was 349, checked in by oriona, 9 years ago

implementation of the similarity measure

File size: 195 bytes
Line 
1#ifndef LAPACK_H
2#define LAPACK_H
3
4class Lapack
5{
6public:
7    static void JacobiSVD(double* At, size_t astep, double* W, double* Vt, size_t vstep, int m, int n, int n1);
8};
9
10#endif  /* LAPACK_H */
Note: See TracBrowser for help on using the repository browser.