ConstantMatrix<T>.ToArray Method

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

ToArray() Gets the elements of the vector.
ToArray(MatrixElementOrder) Gets the elements of the vector.

ToArray(MatrixElementOrder)

Gets the elements of the vector.
C#
public override T[] ToArray(
	MatrixElementOrder elementOrder
)

Parameters

elementOrder  MatrixElementOrder
A MatrixElementOrder value that specifies whether the components should be listed by row or by column.

Return Value

T[]
An array of values that contains the elements of the vector.

See Also