mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-14 04:35:57 +08:00
updated documentation for middleCol and middleRow
(cherry picked from commit 4d870c49b7f1b49e34e8044dc6c1131d43e91a44)
This commit is contained in:
parent
5b83d3c4bc
commit
4240b480e0
@ -167,6 +167,20 @@ matrix.rightCols(q);\endcode </td>
|
||||
<td>\code
|
||||
matrix.rightCols<q>();\endcode </td>
|
||||
</tr>
|
||||
<tr><td>%Block containing the q columns starting from i
|
||||
\link DenseBase::middleCols() * \endlink</td>
|
||||
<td>\code
|
||||
matrix.middleCols(i,q);\endcode </td>
|
||||
<td>\code
|
||||
matrix.middleCols<q>(i);\endcode </td>
|
||||
</tr>
|
||||
<tr><td>%Block containing the q rows starting from i
|
||||
\link DenseBase::middleRows() * \endlink</td>
|
||||
<td>\code
|
||||
matrix.middleRows(i,q);\endcode </td>
|
||||
<td>\code
|
||||
matrix.middleRows<q>(i);\endcode </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
Here is a simple example illustrating the use of the operations presented above:
|
||||
|
Loading…
x
Reference in New Issue
Block a user