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.h251 JacobiSVD<MatrixType> jsvd(matrix,computationOptions);
252 if(computeU()) m_matrixU = jsvd.matrixU();
253 if(computeV()) m_matrixV = jsvd.matrixV();
254 m_singularValues = jsvd.singularValues();
255 m_nonzeroSingularValues = jsvd.nonzeroSingularValues();
683 JacobiSVD<MatrixXr> jsvd(m_computed.block(firstCol, firstCol, n, n) );
684 std::cout << " * j: " << jsvd.singularValues().transpose() << "\n\n";