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 rows,
	int cols
)
Visual Basic (Declaration)
Public Sub New ( _
	rows As Integer, _
	cols As Integer _
)
Visual C++
public:
Matrix(
	int rows, 
	int cols
)

Parameters

rows
Type: System..::.Int32
The number of rows.
cols
Type: System..::.Int32
The number of columns.

See Also