Lines Matching full:matrix
23 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> MatrixQType;
24 typedef Matrix<Scalar, MatrixType::ColsAtCompileTime, 1> VectorType;
53 Matrix<Scalar,Rows,Cols> m1;
55 ColPivHouseholderQR<Matrix<Scalar,Rows,Cols> > qr(m1);
62 Matrix<Scalar,Rows,Cols> r = qr.matrixQR().template triangularView<Upper>();
63 Matrix<Scalar,Rows,Cols> c = qr.householderQ() * r * qr.colsPermutation().inverse();
66 Matrix<Scalar,Cols,Cols2> m2 = Matrix<Scalar,Cols,Cols2>::Random(Cols,Cols2);
67 Matrix<Scalar,Rows,Cols2> m3 = m1*m2;
68 m2 = Matrix<Scalar,Cols,Cols2>::Random(Cols,Cols2);
85 // let's build a matrix more stable to inverse
95 // now construct a matrix with prescribed determinant
129 CALL_SUBTEST_4(( qr_fixedsize<Matrix<float,3,5>, 4 >() ));
130 CALL_SUBTEST_5(( qr_fixedsize<Matrix<double,6,2>, 3 >() ));
131 CALL_SUBTEST_5(( qr_fixedsize<Matrix<double,1,1>, 1 >() ));