Home | History | Annotate | Download | only in doc

Lines Matching full:matrix

10 A block is a rectangular part of a matrix or array. Blocks expressions can be used both
32 matrix.block(i,j,p,q);\endcode </td>
34 matrix.block<p,q>(i,j);\endcode </td>
46 matrix.
73 matters is that you give Eigen as much information as possible at compile time. For example, if your block is a single whole column in a matrix,
89 matrix.row(i);\endcode </td>
94 matrix.col(j);\endcode </td>
115 matrix or array. For instance, \link DenseBase::topLeftCorner() .topLeftCorner() \endlink can be used to refer
116 to a block in the top-left corner of a matrix.
126 matrix.topLeftCorner(p,q);\endcode </td>
128 matrix.topLeftCorner<p,q>();\endcode </td>
133 matrix.bottomLeftCorner(p,q);\endcode </td>
135 matrix.bottomLeftCorner<p,q>();\endcode </td>
140 matrix.topRightCorner(p,q);\endcode </td>
142 matrix.topRightCorner<p,q>();\endcode </td>
147 matrix.bottomRightCorner(p,q);\endcode </td>
149 matrix.bottomRightCorner<p,q>();\endcode </td>
154 matrix.topRows(q);\endcode </td>
156 matrix.topRows<q>();\endcode </td>
161 matrix.bottomRows(q);\endcode </td>
163 matrix.bottomRows<q>();\endcode </td>
168 matrix.leftCols(p);\endcode </td>
170 matrix.leftCols<p>();\endcode </td>
175 matrix.rightCols(q);\endcode </td>
177 matrix.rightCols<q>();\endcode </td>