2017-10-24 23:57:35 +02:00
|
|
|
#include "../Eigen/SVD"
|
2015-12-09 01:58:08 +01:00
|
|
|
|
|
|
|
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
|
|
|
|
#define SCALAR int
|
|
|
|
#else
|
|
|
|
#define SCALAR float
|
|
|
|
#endif
|
|
|
|
|
|
|
|
using namespace Eigen;
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2017-10-24 23:57:35 +02:00
|
|
|
BDCSVD<Matrix<SCALAR,Dynamic,Dynamic> > qr(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
|
2015-12-09 01:58:08 +01:00
|
|
|
}
|