Lines Matching full:matrix
6 A block is a rectangular part of a matrix or array. Blocks expressions can be used both
23 matrix.block(i,j,p,q);\endcode </td>
25 matrix.block<p,q>(i,j);\endcode </td>
37 matrix.
64 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,
80 matrix.row(i);\endcode </td>
85 matrix.col(j);\endcode </td>
106 matrix or array. For instance, \link DenseBase::topLeftCorner() .topLeftCorner() \endlink can be used to refer
107 to a block in the top-left corner of a matrix.
117 matrix.topLeftCorner(p,q);\endcode </td>
119 matrix.topLeftCorner<p,q>();\endcode </td>
124 matrix.bottomLeftCorner(p,q);\endcode </td>
126 matrix.bottomLeftCorner<p,q>();\endcode </td>
131 matrix.topRightCorner(p,q);\endcode </td>
133 matrix.topRightCorner<p,q>();\endcode </td>
138 matrix.bottomRightCorner(p,q);\endcode </td>
140 matrix.bottomRightCorner<p,q>();\endcode </td>
145 matrix.topRows(q);\endcode </td>
147 matrix.topRows<q>();\endcode </td>
152 matrix.bottomRows(q);\endcode </td>
154 matrix.bottomRows<q>();\endcode </td>
159 matrix.leftCols(p);\endcode </td>
161 matrix.leftCols<p>();\endcode </td>
166 matrix.rightCols(q);\endcode </td>
168 matrix.rightCols<q>();\endcode </td>