TMatrix.Submatrix Method
Extracts a contiguous submatrix from the matrix.
Namespace: SMath.Math.NumericAssembly: SMath.Math.Numeric (in SMath.Math.Numeric.dll) Version: 1.73.9126.0
public TMatrix Submatrix(
int startRow,
int endRow,
int startCol,
int endCol
)
Public Function Submatrix (
startRow As Integer,
endRow As Integer,
startCol As Integer,
endCol As Integer
) As TMatrix
public:
TMatrix^ Submatrix(
int startRow,
int endRow,
int startCol,
int endCol
)
member Submatrix :
startRow : int *
endRow : int *
startCol : int *
endCol : int -> TMatrix
- startRow Int32
- Index of the starting row of the submatrix.
- endRow Int32
- Index of the ending row of the submatrix.
- startCol Int32
- Index of the starting column of the submatrix.
- endCol Int32
- Index of the ending column of the submatrix.
TMatrix
A submatrix with rows
[startRow, ..., endRow]
and columns
[startCol, ..., endCol].