Constructs a FloatSymmetricMatrix instance with the specified size.

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

Syntax

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

Parameters

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

Remarks

Results in an order x order matrix. All elements are initialized to zero.

See Also