Lines Matching full:matrix
22 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> MatrixQType;
51 Matrix<Scalar,Rows,Cols> m1;
53 ColPivHouseholderQR<Matrix<Scalar,Rows,Cols> > qr(m1);
60 Matrix<Scalar,Rows,Cols> r = qr.matrixQR().template triangularView<Upper>();
61 Matrix<Scalar,Rows,Cols> c = qr.householderQ() * r * qr.colsPermutation().inverse();
64 Matrix<Scalar,Cols,Cols2> m2 = Matrix<Scalar,Cols,Cols2>::Random(Cols,Cols2);
65 Matrix<Scalar,Rows,Cols2> m3 = m1*m2;
66 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 >() ));