MatrixTGetSubmatrix Method

Gets a submatrix of the MatrixT starting at the given row and column, with the given number of rows and columns.

Definition

Namespace: Gemstone.Numeric
Assembly: Gemstone.Numeric (in Gemstone.Numeric.dll) Version: 1.0.167 -- Release Build+9e631c9f4ed4cd2c2da47045792d813c2de0c4a8
public Matrix<T> GetSubmatrix(
	int startRow,
	int startColumn,
	int numRows,
	int numCols
)

Parameters

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.

Return Value

MatrixT
A new MatrixT that is the submatrix speciffied.

Exceptions

See Also