Home | History | Annotate | Download | only in eigen2

Lines Matching refs:MatrixType

12 template<typename MatrixType> void triangular(const MatrixType& m)
14 typedef typename MatrixType::Scalar Scalar;
16 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
23 MatrixType m1 = MatrixType::Random(rows, cols),
24 m2 = MatrixType::Random(rows, cols),
29 mzero = MatrixType::Zero(rows, cols),
30 mones = MatrixType::Ones(rows, cols),
31 identity = Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime>
33 square = Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime>
39 MatrixType m1up = m1.template part<Eigen::UpperTriangular>();
40 MatrixType m2up = m2.template part<Eigen::UpperTriangular>();
71 m1 = MatrixType::Random(rows, cols);
75 Transpose<MatrixType> trm4(m4);