Click or drag to resize

FloatUpperTriMatrix(FloatMatrix, Int32) Constructor

Constructs a square FloatUpperTriMatrix instance by extracting the upper triangular part of the specified leading square submatrix of a general matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FloatUpperTriMatrix(
	FloatMatrix A,
	int order
)

Parameters

A  FloatMatrix
A general matrix.
order  Int32
The size of a leading square submatrix of A (order x order).
Exceptions
ExceptionCondition
IndexOutOfRangeException Thrown if the given order specifies a submatrix that is out of bounds.
See Also