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()
Public Overridable Function ToArray As T(,)
public:
virtual array<T,2>^ ToArray()
abstract ToArray : unit -> 'T[,]
override ToArray : unit -> 'T[,]
Return Value
Type:
TA 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