Home | History | Annotate | Download | only in Eigen2Support

Lines Matching refs:MatrixType

20   * \param MatrixType the type of the object in which we are taking a minor
30 template<typename MatrixType>
31 struct traits<Minor<MatrixType> >
32 : traits<MatrixType>
34 typedef typename nested<MatrixType>::type MatrixTypeNested;
36 typedef typename MatrixType::StorageKind StorageKind;
38 RowsAtCompileTime = (MatrixType::RowsAtCompileTime != Dynamic) ?
39 int(MatrixType::RowsAtCompileTime) - 1 : Dynamic,
40 ColsAtCompileTime = (MatrixType::ColsAtCompileTime != Dynamic) ?
41 int(MatrixType::ColsAtCompileTime) - 1 : Dynamic,
42 MaxRowsAtCompileTime = (MatrixType::MaxRowsAtCompileTime != Dynamic) ?
43 int(MatrixType::MaxRowsAtCompileTime) - 1 : Dynamic,
44 MaxColsAtCompileTime = (MatrixType::MaxColsAtCompileTime != Dynamic) ?
45 int(MatrixType::MaxColsAtCompileTime) - 1 : Dynamic,
53 template<typename MatrixType> class Minor
54 : public MatrixBase<Minor<MatrixType> >
61 inline Minor(const MatrixType& matrix,
85 const typename MatrixType::Nested m_matrix;