MatrixTGetSubmatrix Method
Gets a submatrix of the
MatrixT starting at the given row and column, with the given number of rows and columns.
Namespace: Gemstone.NumericAssembly: Gemstone.Numeric (in Gemstone.Numeric.dll) Version: 1.0.138 -- Release Build+88ca978c0cce6d0d3e501e198adb13956063f519
public Matrix<T> GetSubmatrix(
int startRow,
int startColumn,
int numRows,
int numCols
)
Public Function GetSubmatrix (
startRow As Integer,
startColumn As Integer,
numRows As Integer,
numCols As Integer
) As Matrix(Of T)
public:
Matrix<T> GetSubmatrix(
int startRow,
int startColumn,
int numRows,
int numCols
)
function GetSubmatrix(startRow, startColumn, numRows, numCols);
- startRow Int32
- the first row of the submatrix.
- startColumn Int32
- the first column of the submarix.
- numRows Int32
- the number of rows of the submatrix.
- numCols Int32
- the number of columns of the submatrix.
MatrixTA new
MatrixT that is the submatrix speciffied.
ArgumentOutOfRangeException | |