| MatrixFSetSubmatrix Method |
Sets a submatrix of this matrix.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public void SetSubmatrix(
int startRow,
int startColumn,
MatrixF submatrix
)
Public Sub SetSubmatrix (
startRow As Integer,
startColumn As Integer,
submatrix As MatrixF
)
public:
void SetSubmatrix(
int startRow,
int startColumn,
MatrixF^ submatrix
)
member SetSubmatrix :
startRow : int *
startColumn : int *
submatrix : MatrixF -> unit
Parameters
- startRow
- Type: SystemInt32
The index of the start row in this matrix. - startColumn
- Type: SystemInt32
The index of the start column in this matrix. - submatrix
- Type: DigitalRune.Mathematics.AlgebraMatrixF
The submatrix.
Exceptions Remarks
The elements of the submatrix are copied into this matrix, beginning at the position
[startRow, startColumn].
See Also