Matrix<T>.GetSubmatrix(Range, Range, TransposeOperation) Method

Returns a sub-matrix of this instance.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Matrix<T> GetSubmatrix(
	Range rowRange,
	Range columnRange,
	TransposeOperation transposeOperation
)

Parameters

rowRange  Range
A Range value that specifies the range of rows that are to make up the new matrix.
columnRange  Range
A Range value that specifies the range of columns that are to make up the new matrix.
transposeOperation  TransposeOperation
A TransposeOperation value that specifies whether or not this view should show the transpose of the matrix.

Return Value

Matrix<T>
A Matrix<T> that contains the specified rows and columns.

Remarks

The matrix returned by this method shares its storage with the matrix from which it is derived.

See Also