Home
last modified time | relevance | path

Searched refs:SquareMatrixType (Results 1 – 13 of 13) sorted by relevance

/external/eigen/test/
Dhouseholder.cpp28 …edef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; in householder() typedef
68 SquareMatrixType m3(rows,rows), m4(rows,rows); in householder()
99 SquareMatrixType hseq_mat = hseq; in householder()
100 SquareMatrixType hseq_mat_conj = hseq.conjugate(); in householder()
101 SquareMatrixType hseq_mat_adj = hseq.adjoint(); in householder()
102 SquareMatrixType hseq_mat_trans = hseq.transpose(); in householder()
103 SquareMatrixType m6 = SquareMatrixType::Random(rows, rows); in householder()
Dcholesky.cpp69 …edef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; in cholesky() typedef
75 SquareMatrixType symm = a0 * a0.adjoint(); in cholesky()
84 SquareMatrixType symmUp = symm.template triangularView<Upper>(); in cholesky()
85 SquareMatrixType symmLo = symm.template triangularView<Lower>(); in cholesky()
87 LLT<SquareMatrixType,Lower> chollo(symmLo); in cholesky()
103 LLT<SquareMatrixType,Upper> cholup(symmUp); in cholesky()
153 SquareMatrixType symmUp = symm.template triangularView<Upper>(); in cholesky()
154 SquareMatrixType symmLo = symm.template triangularView<Lower>(); in cholesky()
156 LDLT<SquareMatrixType,Lower> ldltlo(symmLo); in cholesky()
173 LDLT<SquareMatrixType,Upper> ldltup(symmUp); in cholesky()
[all …]
Ddontalign.cpp25 …edef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; in dontalign() typedef
31 SquareMatrixType square = SquareMatrixType::Random(rows,rows); in dontalign()
Dinteger_types.cpp71 …edef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; in integer_type_tests() typedef
72 SquareMatrixType identity = SquareMatrixType::Identity(rows, rows), in integer_type_tests()
73 square = SquareMatrixType::Random(rows, rows); in integer_type_tests()
Ddiagonalmatrices.cpp19 typedef Matrix<Scalar, Rows, Rows> SquareMatrixType; in diagonalmatrices() typedef
38 SquareMatrixType sq_m1 (v1.asDiagonal()); in diagonalmatrices()
42 SquareMatrixType sq_m2 = v1.asDiagonal(); in diagonalmatrices()
Dbasicstuff.cpp19 …edef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; in basicStuff() typedef
33 SquareMatrixType sm1 = SquareMatrixType::Random(rows,rows), sm2(rows,rows); in basicStuff()
Dadjoint.cpp77 …edef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; in adjoint() typedef
86 square = SquareMatrixType::Random(rows, rows); in adjoint()
/external/eigen/bench/
DbenchCholesky.cpp44 …edef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; in benchLLT() typedef
47 SquareMatrixType covMat = a * a.adjoint(); in benchLLT()
59 LDLT<SquareMatrixType> cholnosqrt(covMat); in benchLLT()
70 LLT<SquareMatrixType> chol(covMat); in benchLLT()
DbenchEigenSolver.cpp43 …edef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; in benchEigenSolver() typedef
46 SquareMatrixType covMat = a * a.adjoint(); in benchEigenSolver()
54 SelfAdjointEigenSolver<SquareMatrixType> ei(covMat); in benchEigenSolver()
68 EigenSolver<SquareMatrixType> ei(covMat); in benchEigenSolver()
/external/eigen/unsupported/Eigen/src/Skyline/
DSkylineMatrixBase.h89 EIGEN_SIZE_MAX(RowsAtCompileTime, ColsAtCompileTime) > SquareMatrixType; typedef
/external/eigen/Eigen/src/Core/
DMatrixBase.h95 EIGEN_SIZE_MAX(RowsAtCompileTime,ColsAtCompileTime)> SquareMatrixType; typedef
118 typedef Block<const CwiseNullaryOp<internal::scalar_identity_op<Scalar>, SquareMatrixType>,
DCwiseNullaryOp.h806 return BasisReturnType(SquareMatrixType::Identity(newSize,newSize), i);
821 return BasisReturnType(SquareMatrixType::Identity(),i);
/external/eigen/Eigen/src/SparseCore/
DSparseMatrixBase.h136 EIGEN_SIZE_MAX(RowsAtCompileTime,ColsAtCompileTime)> SquareMatrixType; typedef