11 #ifndef EIGEN_PARSED_BY_DOXYGEN
14 typedef Block<Derived, internal::traits<Derived>::RowsAtCompileTime, 1, !IsRowMajor>
ColXpr;
15 typedef const Block<const Derived, internal::traits<Derived>::RowsAtCompileTime, 1, !IsRowMajor>
ConstColXpr;
17 typedef Block<Derived, 1, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor>
RowXpr;
18 typedef const Block<const Derived, 1, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor>
ConstRowXpr;
20 typedef Block<Derived, internal::traits<Derived>::RowsAtCompileTime,
Dynamic, !IsRowMajor>
ColsBlockXpr;
23 typedef Block<Derived, Dynamic, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor>
RowsBlockXpr;
24 typedef const Block<const Derived, Dynamic, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor>
ConstRowsBlockXpr;
26 template<
int N>
struct NColsBlockXpr {
typedef Block<Derived, internal::traits<Derived>::RowsAtCompileTime,
N, !IsRowMajor>
Type; };
27 template<
int N>
struct ConstNColsBlockXpr {
typedef const Block<const Derived, internal::traits<Derived>::RowsAtCompileTime,
N, !IsRowMajor>
Type; };
29 template<
int N>
struct NRowsBlockXpr {
typedef Block<Derived, N, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor>
Type; };
30 template<
int N>
struct ConstNRowsBlockXpr {
typedef const Block<const Derived, N, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor>
Type; };
35 template<
int Rows,
int Cols>
struct FixedBlockXpr {
typedef Block<Derived,Rows,Cols>
Type; };
43 #endif // not EIGEN_PARSED_BY_DOXYGEN
66 return BlockXpr(derived(), startRow, startCol, blockRows, blockCols);
73 return ConstBlockXpr(derived(), startRow, startCol, blockRows, blockCols);
94 return BlockXpr(derived(), 0, cols() - cCols, cRows, cCols);
101 return ConstBlockXpr(derived(), 0, cols() - cCols, cRows, cCols);
116 template<
int CRows,
int CCols>
124 template<
int CRows,
int CCols>
150 template<
int CRows,
int CCols>
157 template<
int CRows,
int CCols>
180 return BlockXpr(derived(), 0, 0, cRows, cCols);
201 template<
int CRows,
int CCols>
209 template<
int CRows,
int CCols>
235 template<
int CRows,
int CCols>
242 template<
int CRows,
int CCols>
265 return BlockXpr(derived(), rows() - cRows, cols() - cCols, cRows, cCols);
272 return ConstBlockXpr(derived(), rows() - cRows, cols() - cCols, cRows, cCols);
286 template<
int CRows,
int CCols>
294 template<
int CRows,
int CCols>
320 template<
int CRows,
int CCols>
327 template<
int CRows,
int CCols>
350 return BlockXpr(derived(), rows() - cRows, 0, cRows, cCols);
357 return ConstBlockXpr(derived(), rows() - cRows, 0, cRows, cCols);
371 template<
int CRows,
int CCols>
379 template<
int CRows,
int CCols>
405 template<
int CRows,
int CCols>
412 template<
int CRows,
int CCols>
717 return ColsBlockXpr(derived(), 0, startCol, rows(), numCols);
778 template<
int NRows,
int NCols>
786 template<
int NRows,
int NCols>
814 template<
int NRows,
int NCols>
822 template<
int NRows,
int NCols>
840 return ColXpr(derived(), i);
861 return RowXpr(derived(), i);