Home | History | Annotate | Download | only in test

Lines Matching refs:Matrix

21   typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> MatrixQType;
37 Matrix<Scalar,Rows,Cols> m1 = Matrix<Scalar,Rows,Cols>::Random();
38 HouseholderQR<Matrix<Scalar,Rows,Cols> > qr(m1);
40 Matrix<Scalar,Rows,Cols> r = qr.matrixQR();
46 Matrix<Scalar,Cols,Cols2> m2 = Matrix<Scalar,Cols,Cols2>::Random(Cols,Cols2);
47 Matrix<Scalar,Rows,Cols2> m3 = m1*m2;
48 m2 = Matrix<Scalar,Cols,Cols2>::Random(Cols,Cols2);
69 // let's build a matrix more stable to inverse
79 // now construct a matrix with prescribed determinant
110 CALL_SUBTEST_3(( qr_fixedsize<Matrix<float,3,4>, 2 >() ));
111 CALL_SUBTEST_4(( qr_fixedsize<Matrix<double,6,2>, 4 >() ));
112 CALL_SUBTEST_5(( qr_fixedsize<Matrix<double,2,5>, 7 >() ));
113 CALL_SUBTEST_11( qr(Matrix<float,1,1>()) );