Back to Linear Algebra (Eigen)
eigen.utilities.setBlock
Set a block of a matrix to values from another matrix.
Syntax
eigen.utilities.setBlock(A, startRow, startCol, B)
Description
Set a block of a matrix to values from another matrix.
Parameters
| Name | Description |
|---|---|
| A | - Target matrix handle (modified in place) |
| startRow | - Starting row index (0-based) |
| startCol | - Starting column index (0-based) |
| B | - Source matrix containing values to set |
Returns
void