Click or drag to resize

FloatUpperTriMatrixLeadingSubmatrix Method

Returns the k by k upper left corner of the matrix. The matrix and the submatrix share the same data.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FloatUpperTriMatrix LeadingSubmatrix(
	int k
)

Parameters

k  Int32
The submatrix will have k rows and k columns.

Return Value

FloatUpperTriMatrix
The k by k upper left corner of the matrix. The matrix and the submatrix share the same data.
Exceptions
ExceptionCondition
IndexOutOfRangeExceptionThrown when trying to create a leading submatrix larger than this matrix.
See Also