Home | History | Annotate | Download | only in examples

Lines Matching refs:Derived

6 template<typename Derived>
7 Eigen::Block<Derived>
8 topLeftCorner(MatrixBase<Derived>& m, int rows, int cols)
10 return Eigen::Block<Derived>(m.derived(), 0, 0, rows, cols);
13 template<typename Derived>
14 const Eigen::Block<const Derived>
15 topLeftCorner(const MatrixBase<Derived>& m, int rows, int cols)
17 return Eigen::Block<const Derived>(m.derived(), 0, 0, rows, cols);