Searched refs:toDenseMatrix (Results 1 - 16 of 16) sorted by relevance

/external/eigen/test/
H A Dproduct_syrk.cpp39 ((s1 * rhs2 * rhs2.adjoint()).eval().template triangularView<Lower>().toDenseMatrix()));
42 ((s1 * rhs2 * rhs22.adjoint()).eval().template triangularView<Lower>().toDenseMatrix()));
47 (s1 * rhs2 * rhs2.adjoint()).eval().template triangularView<Upper>().toDenseMatrix());
50 (s1 * rhs22 * rhs2.adjoint()).eval().template triangularView<Upper>().toDenseMatrix());
55 (s1 * rhs1.adjoint() * rhs1).eval().template triangularView<Lower>().toDenseMatrix());
58 (s1 * rhs11.adjoint() * rhs1).eval().template triangularView<Lower>().toDenseMatrix());
63 (s1 * rhs1.adjoint() * rhs1).eval().template triangularView<Upper>().toDenseMatrix());
65 (s1 * rhs1.adjoint() * rhs11).eval().template triangularView<Upper>().toDenseMatrix());
70 (s1 * rhs3.adjoint() * rhs3).eval().template triangularView<Lower>().toDenseMatrix());
74 (s1 * rhs3.adjoint() * rhs3).eval().template triangularView<Upper>().toDenseMatrix());
[all...]
H A Dpermutationmatrices.cpp51 VERIFY((lp*lp.inverse()).toDenseMatrix().isIdentity());
52 VERIFY((lv.asPermutation()*lv.asPermutation().inverse()).toDenseMatrix().isIdentity());
53 VERIFY((MapLeftPerm(lv.data(),lv.size())*MapLeftPerm(lv.data(),lv.size()).inverse()).toDenseMatrix().isIdentity());
59 VERIFY_IS_APPROX((lp*lp2).toDenseMatrix().template cast<Scalar>(), lm*lm2);
60 VERIFY_IS_APPROX((lv.asPermutation()*lv2.asPermutation()).toDenseMatrix().template cast<Scalar>(), lm*lm2);
61 VERIFY_IS_APPROX((MapLeftPerm(lv.data(),lv.size())*MapLeftPerm(lv2.data(),lv2.size())).toDenseMatrix().template cast<Scalar>(), lm*lm2);
93 VERIFY_IS_APPROX(lm, lp2.toDenseMatrix().template cast<Scalar>());
101 VERIFY_IS_APPROX(rm, rp2.toDenseMatrix().template cast<Scalar>());
H A Dproduct_selfadjoint.cpp43 VERIFY_IS_APPROX(m2, (m1 + v1 * v2.adjoint()+ v2 * v1.adjoint()).template triangularView<Lower>().toDenseMatrix());
47 VERIFY_IS_APPROX(m2, (m1 + (s3*(-v1)*(s2*v2).adjoint()+numext::conj(s3)*(s2*v2)*(-v1).adjoint())).template triangularView<Upper>().toDenseMatrix());
51 VERIFY_IS_APPROX(m2, (m1 + s1*(-s2*r1.adjoint())*(r2.adjoint()*s3).adjoint() + numext::conj(s1)*(r2.adjoint()*s3) * (-s2*r1.adjoint()).adjoint()).template triangularView<Upper>().toDenseMatrix());
59 VERIFY_IS_APPROX(m2, m3.template triangularView<Lower>().toDenseMatrix());
H A Dbandmatrix.cpp42 VERIFY_IS_APPROX(dm1,m.toDenseMatrix());
57 VERIFY_IS_APPROX(dm1,m.toDenseMatrix());
H A Dtriangular.cpp56 VERIFY_IS_APPROX(m3.template triangularView<Lower>().transpose().toDenseMatrix(), m1);
61 VERIFY_IS_APPROX(m3.template triangularView<Lower>().toDenseMatrix(), m1);
63 VERIFY_IS_APPROX(m3.template triangularView<Lower>().conjugate().toDenseMatrix(),
64 m3.conjugate().template triangularView<Lower>().toDenseMatrix());
158 VERIFY_IS_APPROX(m3.template triangularView<Upper>().toDenseMatrix(), m1);
163 VERIFY_IS_APPROX(m3.template triangularView<Lower>().toDenseMatrix(), m1);
167 VERIFY_IS_APPROX(m3.template triangularView<StrictlyUpper>().toDenseMatrix(), m1);
172 VERIFY_IS_APPROX(m3.template triangularView<StrictlyLower>().toDenseMatrix(), m1);
H A Ddiagonalmatrices.cpp38 VERIFY_IS_APPROX(sq_m1, v1.asDiagonal().toDenseMatrix());
40 VERIFY_IS_APPROX(sq_m1, v1.asDiagonal().toDenseMatrix());
51 VERIFY_IS_APPROX(sq_m1, ldm1.toDenseMatrix());
53 VERIFY_IS_APPROX(sq_m1, ldm1.toDenseMatrix());
H A Dproduct_trsolve.cpp15 VERIFY_IS_APPROX((TRI).toDenseMatrix() * (XB), ref); \
18 VERIFY_IS_APPROX((TRI).toDenseMatrix() * (XB), ref); \
24 VERIFY_IS_APPROX((XB).transpose() * (TRI).transpose().toDenseMatrix(), ref.transpose()); \
27 VERIFY_IS_APPROX((XB).transpose() * (TRI).transpose().toDenseMatrix(), ref.transpose()); \
/external/eigen/Eigen/src/Core/
H A DDiagonalMatrix.h43 DenseMatrixType toDenseMatrix() const { return derived(); } function in class:Eigen::DiagonalBase
94 return toDenseMatrix().isApprox(other, precision);
H A DSelfAdjointView.h182 m_matrix.const_cast_derived().template triangularView<UpLo>() = other.toDenseMatrix();
183 m_matrix.const_cast_derived().template triangularView<OtherPart>() = other.toDenseMatrix().adjoint();
H A DTriangularMatrix.h86 DenseMatrixType toDenseMatrix() const function in class:Eigen::TriangularBase
314 return this->toDenseMatrix() * rhsPlainObject;
319 return this->toDenseMatrix().isApprox(other.toDenseMatrix(), precision);
324 return this->toDenseMatrix().isApprox(other, precision);
H A DPermutationMatrix.h130 DenseMatrixType toDenseMatrix() const function in class:Eigen::PermutationBase
655 DenseMatrixType toDenseMatrix() const { return *this; } function in class:Eigen::Transpose
H A DBandMatrix.h145 DenseMatrixType toDenseMatrix() const function in class:Eigen::internal::BandMatrixBase
/external/eigen/Eigen/src/LU/
H A DFullPivLU.h524 // FIXME the .toDenseMatrix() should not be needed...
526 .template triangularView<UnitLower>().toDenseMatrix()
528 .template triangularView<Upper>().toDenseMatrix();
H A DPartialPivLU.h424 MatrixType res = m_lu.template triangularView<UnitLower>().toDenseMatrix()
/external/eigen/Eigen/src/Cholesky/
H A DLLT.h465 return matrixL() * matrixL().adjoint().toDenseMatrix();
/external/eigen/unsupported/Eigen/src/SVD/
H A DBDCSVD.h287 temp = bid.bidiagonal().toDenseMatrix().transpose();

Completed in 2053 milliseconds