| MatrixFGetSubmatrix Method (Int32, Int32, Int32, Int32) |
Gets 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 MatrixF GetSubmatrix(
int startRow,
int endRow,
int startColumn,
int endColumn
)
Public Function GetSubmatrix (
startRow As Integer,
endRow As Integer,
startColumn As Integer,
endColumn As Integer
) As MatrixF
public:
MatrixF^ GetSubmatrix(
int startRow,
int endRow,
int startColumn,
int endColumn
)
member GetSubmatrix :
startRow : int *
endRow : int *
startColumn : int *
endColumn : int -> MatrixF
Parameters
- startRow
- Type: SystemInt32
The index of the start row. - endRow
- Type: SystemInt32
The index of the end row (included in the submatrix). - startColumn
- Type: SystemInt32
The index of the start column. - endColumn
- Type: SystemInt32
The index of the end column (included in the submatrix).
Return Value
Type:
MatrixFThe extracted submatrix.
Exceptions See Also