Searched refs:cCols (Results 1 - 3 of 3) sorted by relevance

/external/eigen/Eigen/src/Eigen2Support/
H A DBlock.h21 * \param cCols the number of columns in the corner
34 ::corner(CornerType type, Index cRows, Index cCols) argument
41 return Block<Derived>(derived(), 0, 0, cRows, cCols);
43 return Block<Derived>(derived(), 0, cols() - cCols, cRows, cCols);
45 return Block<Derived>(derived(), rows() - cRows, 0, cRows, cCols);
47 return Block<Derived>(derived(), rows() - cRows, cols() - cCols, cRows, cCols);
54 DenseBase<Derived>::corner(CornerType type, Index cRows, Index cCols) const
61 return Block<Derived>(derived(), 0, 0, cRows, cCols);
[all...]
/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h71 * \param cCols the number of columns in the corner
78 inline Block<Derived> topRightCorner(Index cRows, Index cCols) argument
80 return Block<Derived>(derived(), 0, cols() - cCols, cRows, cCols);
84 inline const Block<const Derived> topRightCorner(Index cRows, Index cCols) const
86 return Block<const Derived>(derived(), 0, cols() - cCols, cRows, cCols);
117 * \param cCols the number of columns in the corner
124 inline Block<Derived> topLeftCorner(Index cRows, Index cCols) argument
126 return Block<Derived>(derived(), 0, 0, cRows, cCols);
169 bottomRightCorner(Index cRows, Index cCols) argument
214 bottomLeftCorner(Index cRows, Index cCols) argument
[all...]
/external/eigen/Eigen/src/Core/
H A DDenseBase.h495 Block<Derived> corner(CornerType type, Index cRows, Index cCols);
496 const Block<Derived> corner(CornerType type, Index cRows, Index cCols) const;

Completed in 74 milliseconds