Home
last modified time | relevance | path

Searched refs:jsvd (Results 1 – 2 of 2) sorted by relevance

/external/eigen/bench/
Ddense_solvers.cpp56 JacobiSVD<MatDyn> jsvd(A.rows(),A.cols()); in bench() local
70 BENCH(t_jsvd, tries, rep, jsvd.compute(A,svd_opt)); in bench()
/external/eigen/Eigen/src/SVD/
DBDCSVD.h252 JacobiSVD<MatrixType> jsvd(matrix,computationOptions);
253 if(computeU()) m_matrixU = jsvd.matrixU();
254 if(computeV()) m_matrixV = jsvd.matrixV();
255 m_singularValues = jsvd.singularValues();
256 m_nonzeroSingularValues = jsvd.nonzeroSingularValues();
684 JacobiSVD<MatrixXr> jsvd(m_computed.block(firstCol, firstCol, n, n) );
685 std::cout << " * j: " << jsvd.singularValues().transpose() << "\n\n";