Array Math.To Vector Method
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
ToVector<T>(T[], ArrayMutability) | Converts an array to a vector with copying. |
ToVector<T>(T[], Int32, ArrayMutability) | Converts an array to a vector with copying. |
ToVector<T>(T[], ArrayMutability)
Converts an array to a vector with copying.
public static DenseVector<T> ToVector<T>(
this T[] values,
ArrayMutability mutability = ArrayMutability.MutableStructure
)
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).ToVector<T>(T[], Int32, ArrayMutability)
Converts an array to a vector with copying.
public static DenseVector<T> ToVector<T>(
this T[] values,
int length,
ArrayMutability mutability = ArrayMutability.MutableStructure
)
Parameters
- values T[]
- An array.
- length Int32
- The length of the vector.
- 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.