OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:matrixV
(Results
1 - 16
of
16
) sorted by null
/external/eigen/doc/snippets/
JacobiSVD_basic.cpp
6
cout << "Its right singular vectors are the columns of the thin V matrix:" << endl << svd.
matrixV
() << endl;
/external/eigen/unsupported/test/
svd_common.h
45
MatrixVType v = svd.
matrixV
();
72
VERIFY_IS_APPROX(svd.
matrixV
(), referenceSvd.
matrixV
());
74
VERIFY_IS_APPROX(svd.
matrixV
(), referenceSvd.
matrixV
().leftCols(diagSize));
135
VERIFY_IS_APPROX(m, svd.matrixU().leftCols(diagSize) * svd.singularValues().asDiagonal() * svd.
matrixV
().leftCols(diagSize).adjoint());
157
VERIFY_RAISES_ASSERT(svd.
matrixV
())
163
VERIFY_RAISES_ASSERT(svd.
matrixV
())
171
VERIFY_RAISES_ASSERT(svd.
matrixV
())
174
svd.
matrixV
();
[
all
...]
bdcsvd.cpp
97
VERIFY_IS_APPROX(bdc_svd.
matrixV
(), jacobi_svd.
matrixV
());
99
VERIFY_IS_APPROX(bdc_svd.
matrixV
(), jacobi_svd.
matrixV
());
jacobisvd.cpp
100
VERIFY_RAISES_ASSERT(m.jacobiSvd().
matrixV
());
/external/eigen/Eigen/src/Geometry/
Umeyama.h
145
if ( svd.matrixU().determinant() * svd.
matrixV
().determinant() > Scalar(0) ) {
146
Rt.block(0,0,m,m).noalias() = svd.matrixU()*svd.
matrixV
().transpose();
149
Rt.block(0,0,m,m).noalias() = svd.matrixU() * S.asDiagonal() * svd.
matrixV
().transpose();
153
Rt.block(0,0,m,m).noalias() = svd.matrixU() * S.asDiagonal() * svd.
matrixV
().transpose();
Transform.h
[
all
...]
Quaternion.h
592
Vector3 axis = svd.
matrixV
().col(2);
/external/eigen/test/
jacobisvd.cpp
36
MatrixVType v = svd.
matrixV
();
61
VERIFY_IS_APPROX(svd.
matrixV
(), referenceSvd.
matrixV
());
63
VERIFY_IS_APPROX(svd.
matrixV
(), referenceSvd.
matrixV
().leftCols(diagSize));
206
VERIFY_IS_APPROX(m, svd.matrixU().leftCols(diagSize) * svd.singularValues().asDiagonal() * svd.
matrixV
().leftCols(diagSize).adjoint());
257
VERIFY_RAISES_ASSERT(svd.
matrixV
())
264
VERIFY_RAISES_ASSERT(svd.
matrixV
())
272
VERIFY_RAISES_ASSERT(svd.
matrixV
())
276
svd.
matrixV
();
[
all
...]
/external/eigen/test/eigen2/
eigen2_svd.cpp
38
VERIFY_IS_APPROX(a, matU * sigma * svd.
matrixV
().transpose());
/external/eigen/unsupported/Eigen/src/SVD/
SVDBase.h
126
const MatrixVType&
matrixV
() const
BDCSVD.h
183
const MatrixVType&
matrixV
() const
388
if (compV) m_naiveV.block(firstRowW, firstColW, n, n).real() << b.
matrixV
();
491
if (compV) m_naiveV.block(firstRowW, firstColW, n, n) *= res.
matrixV
();
720
dst = dec().
matrixV
().leftCols(diagSize)
JacobiSVD.h
758
dst = dec().
matrixV
().leftCols(diagSize)
/external/eigen/Eigen/src/Eigen2Support/Geometry/
Transform.h
622
Scalar x = (svd.matrixU() * svd.
matrixV
().adjoint()).determinant(); // so x has absolute value 1
627
scaling->noalias() = svd.
matrixV
() * sv.asDiagonal() * svd.
matrixV
().adjoint();
633
rotation->noalias() = m * svd.
matrixV
().adjoint();
653
Scalar x = (svd.matrixU() * svd.
matrixV
().adjoint()).determinant(); // so x has absolute value 1
664
rotation->noalias() = m * svd.
matrixV
().adjoint();
/external/ceres-solver/internal/ceres/
covariance_impl.cc
635
svd.
matrixV
() *
637
svd.
matrixV
().transpose();
/external/eigen/Eigen/src/SVD/
JacobiSVD.h
629
const MatrixVType&
matrixV
() const
[
all
...]
/external/eigen/Eigen/src/Eigen2Support/
SVD.h
66
const MatrixVType&
matrixV
() const { return m_matV; }
Completed in 298 milliseconds