mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-11-21 03:11:25 +08:00
12 lines
251 B
C++
12 lines
251 B
C++
#include "../Eigen/SVD"
|
|
|
|
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
|
|
#define SCALAR int
|
|
#else
|
|
#define SCALAR float
|
|
#endif
|
|
|
|
using namespace Eigen;
|
|
|
|
int main() { JacobiSVD<Matrix<SCALAR, Dynamic, Dynamic> > qr(Matrix<SCALAR, Dynamic, Dynamic>::Random(10, 10)); }
|