ArrayMath.AsVector<T>(T[], ArrayMutability) Method

Converts an array to a vector without copying.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static DenseVector<T> AsVector<T>(
	this T[] values,
	ArrayMutability mutability = ArrayMutability.Immutable
)

Parameters

values  T[]
An array.
mutability  ArrayMutability  (Optional)
Specifies the mutability of the vector.

Type Parameters

T
The type of the elements of the array.

Return Value

DenseVector<T>
The array values converted to a vector.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type T[]. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also