#ifndef LAPACK_H #define LAPACK_H class Lapack { public: static void JacobiSVD(double* At, size_t astep, double* W, double* Vt, size_t vstep, int m, int n, int n1); }; #endif /* LAPACK_H */