Constructs a square DoubleLowerTriMatrix instance with the specified size. All elements are initialized to zero.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public DoubleLowerTriMatrix(
	int order
)
Visual Basic (Declaration)
Public Sub New ( _
	order As Integer _
)
Visual C++
public:
DoubleLowerTriMatrix(
	int order
)

Parameters

order
Type: System..::.Int32
The size of the square matrix (order x order).

See Also