Click or drag to resize

AnyMatrixTToArray Method

Copies the matrix into an array.

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public virtual T[,] ToArray()

Return Value

Type: T
A two-dimensional .NET array containing the matrix entries.
Remarks

The output array is independent of the matrix. Changes to its elements will not change the elements of the matrix, and changes to the matrix elements will not be reflected in the array.

See Also