Click or drag to resize

SquareMatrix Constructor (Double)

Initializes a new square matrix from the given 2D array.

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public SquareMatrix(
	double[,] entries
)

Parameters

entries
Type: SystemDouble
The source 2D array.
Exceptions
ExceptionCondition
ArgumentNullExceptionentries is .
DimensionMismatchExceptionThe two dimensions of entries are not equal.
Remarks

The entries are copied, so changes to entries after the matrix is initialized do not affect matrix entries.

See Also