Searched defs:SquareMatrixType (Results 1 - 15 of 15) sorted by relevance

/external/eigen/test/eigen2/
H A Deigen2_qr.cpp22 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, MatrixType::ColsAtCompileTime> SquareMatrixType; typedef
31 SquareMatrixType b = a.adjoint() * a;
34 Tridiagonalization<SquareMatrixType> tridiag(b);
38 HessenbergDecomposition<SquareMatrixType> hess(b);
41 b = SquareMatrixType::Random(cols,cols);
H A Deigen2_adjoint.cpp21 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; typedef
33 identity = SquareMatrixType::Identity(rows, rows),
34 square = SquareMatrixType::Random(rows, rows);
H A Deigen2_cholesky.cpp29 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; typedef
35 SquareMatrixType symm = a0 * a0.adjoint();
69 LDLT<SquareMatrixType> ldlt(symm);
80 LLT<SquareMatrixType> chol(symm);
93 SquareMatrixType symm = a0.block(0,0,rows,cols-4) * a0.block(0,0,rows,cols-4).adjoint();
94 LLT<SquareMatrixType> chol(symm);
96 LDLT<SquareMatrixType> cholnosqrt(symm);
/external/eigen/test/
H A Ddontalign.cpp25 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; typedef
31 SquareMatrixType square = SquareMatrixType::Random(rows,rows);
H A Dadjoint.cpp66 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; typedef
74 square = SquareMatrixType::Random(rows, rows);
H A Ddiagonalmatrices.cpp19 typedef Matrix<Scalar, Rows, Rows> SquareMatrixType; typedef
37 SquareMatrixType sq_m1 (v1.asDiagonal());
41 SquareMatrixType sq_m2 = v1.asDiagonal();
H A Dinteger_types.cpp71 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; typedef
72 SquareMatrixType identity = SquareMatrixType::Identity(rows, rows),
73 square = SquareMatrixType::Random(rows, rows);
H A Dbasicstuff.cpp19 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; typedef
33 SquareMatrixType sm1 = SquareMatrixType::Random(rows,rows), sm2(rows,rows);
H A Dhouseholder.cpp28 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; typedef
68 SquareMatrixType m3(rows,rows), m4(rows,rows);
99 SquareMatrixType hseq_mat = hseq;
100 SquareMatrixType hseq_mat_conj = hseq.conjugate();
101 SquareMatrixType hseq_mat_adj = hseq.adjoint();
102 SquareMatrixType hseq_mat_trans = hseq.transpose();
103 SquareMatrixType m6 = SquareMatrixType::Random(rows, rows);
H A Dcholesky.cpp72 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; typedef
78 SquareMatrixType symm = a0 * a0.adjoint();
91 SquareMatrixType symmUp = symm.template triangularView<Upper>();
92 SquareMatrixType symmLo = symm.template triangularView<Lower>();
94 LLT<SquareMatrixType,Lower> chollo(symmLo);
102 LLT<SquareMatrixType,Upper> cholup(symmUp);
143 SquareMatrixType symmUp = symm.template triangularView<Upper>();
144 SquareMatrixType symmLo = symm.template triangularView<Lower>();
146 LDLT<SquareMatrixType,Lower> ldltlo(symmLo);
153 LDLT<SquareMatrixType,Uppe
[all...]
/external/eigen/bench/
H A DbenchCholesky.cpp44 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; typedef
47 SquareMatrixType covMat = a * a.adjoint();
59 LDLT<SquareMatrixType> cholnosqrt(covMat);
70 LLT<SquareMatrixType> chol(covMat);
H A DbenchEigenSolver.cpp43 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType; typedef
46 SquareMatrixType covMat = a * a.adjoint();
54 SelfAdjointEigenSolver<SquareMatrixType> ei(covMat);
68 EigenSolver<SquareMatrixType> ei(covMat);
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineMatrixBase.h89 EIGEN_SIZE_MAX(RowsAtCompileTime, ColsAtCompileTime) > SquareMatrixType; typedef in class:Eigen::SkylineMatrixBase
/external/eigen/Eigen/src/Core/
H A DMatrixBase.h96 EIGEN_SIZE_MAX(RowsAtCompileTime,ColsAtCompileTime)> SquareMatrixType; typedef in class:Eigen::MatrixBase
130 typedef Block<const CwiseNullaryOp<internal::scalar_identity_op<Scalar>, SquareMatrixType>,
/external/eigen/Eigen/src/SparseCore/
H A DSparseMatrixBase.h129 EIGEN_SIZE_MAX(RowsAtCompileTime,ColsAtCompileTime)> SquareMatrixType; typedef in class:Eigen::SparseMatrixBase

Completed in 2007 milliseconds