Click or drag to resize

DoubleUpperTriMatrix(DoubleMatrix, Int32) Constructor

Constructs a square DoubleUpperTriMatrix 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 DoubleUpperTriMatrix(
	DoubleMatrix A,
	int order
)

Parameters

A  DoubleMatrix
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