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(
	double[,] data
)
Visual Basic (Declaration)
Public Sub New ( _
	data As Double(,) _
)
Visual C++
public:
Matrix(
	array<double,2>^ data
)

Parameters

data
Type: array< System..::.Double ,2>[,](,)[,]
An existing matrix.

See Also