Home | History | Annotate | Download | only in test

Lines Matching refs:MatrixType

47 template<typename MatrixType> void map_class_matrix(const MatrixType& m)
49 typedef typename MatrixType::Index Index;
50 typedef typename MatrixType::Scalar Scalar;
62 Map<MatrixType, Aligned>(array1, rows, cols) = MatrixType::Ones(rows,cols);
63 Map<MatrixType>(array2, rows, cols) = Map<MatrixType>(array1, rows, cols);
64 Map<MatrixType>(array3unaligned, rows, cols) = Map<MatrixType>(array1, rows, cols);
65 MatrixType ma1 = Map<MatrixType>(array1, rows, cols);
66 MatrixType ma2 = Map<MatrixType, Aligned>(array2, rows, cols);
68 MatrixType ma3 = Map<MatrixType>(array3unaligned, rows, cols);