Creates a new instance of Matrix.

Namespace:  Bespoke.Common.LinearAlgebra
Assembly:  Bespoke.Common (in Bespoke.Common.dll) Version: 4.3.0.0 (4.3.0.0)

Syntax

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

Parameters

size
Type: System..::.Int32
The number of rows and columns for the matrix.

Remarks

Creates a square matrix of size.

See Also