Home | History | Annotate | Download | only in eigen2

Lines Matching refs:MatrixType

13 template<typename MatrixType> void qr(const MatrixType& m)
21 typedef typename MatrixType::Scalar Scalar;
22 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, MatrixType::ColsAtCompileTime> SquareMatrixType;
23 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, 1> VectorType;
25 MatrixType a = MatrixType::Random(rows,cols);
26 QR<MatrixType> qrOfA(a);
28 VERIFY_IS_NOT_APPROX(a+MatrixType::Identity(rows, cols), qrOfA.matrixQ() * qrOfA.matrixR());