AnyMatrixTToArray Method

Copies the matrix into an array.

Definition

Namespace: Meta.Numerics.Matrices
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public virtual T[,] ToArray()

Return Value

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