Home | History | Annotate | Download | only in Eigen2Support

Lines Matching refs:corner

16 /** \returns a dynamic-size expression of a corner of *this.
18 * \param type the type of corner. Can be \a Eigen::TopLeft, \a Eigen::TopRight,
20 * \param cRows the number of rows in the corner
21 * \param cCols the number of columns in the corner
34 ::corner(CornerType type, Index cRows, Index cCols)
39 eigen_assert(false && "Bad corner type.");
51 /** This is the const version of corner(CornerType, Index, Index).*/
54 DenseBase<Derived>::corner(CornerType type, Index cRows, Index cCols) const
59 eigen_assert(false && "Bad corner type.");
71 /** \returns a fixed-size expression of a corner of *this.
73 * \param type the type of corner. Can be \a Eigen::TopLeft, \a Eigen::TopRight,
76 * The template parameters CRows and CCols arethe number of rows and columns in the corner.
86 DenseBase<Derived>::corner(CornerType type)
91 eigen_assert(false && "Bad corner type.");
103 /** This is the const version of corner<int, int>(CornerType).*/
107 DenseBase<Derived>::corner(CornerType type) const
112 eigen_assert(false && "Bad corner type.");