mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-02-05 17:50:26 +08:00
updated documentation for middleCol and middleRow
This commit is contained in:
parent
4ba872bd75
commit
4d870c49b7
@ -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…
Reference in New Issue
Block a user