Click or drag to resize

DoubleLowerTriMatrix(DoubleMatrix, Int32) Constructor

Constructs a square DoubleLowerTriMatrix instance by extracting the lower 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 DoubleLowerTriMatrix(
	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