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

Last change on this file since 350 was 350, checked in by Maciej Komosinski, 9 years ago

Cosmetic

File size: 185 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
Note: See TracBrowser for help on using the repository browser.