ILNumerics - Technical Application Development
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
A vector of T elements, 1D in numpy array style, a column vector otherwise.
Note: This API is now obsolete.
Creates a vector from values. Column major storage.
[ILNumerics Computing Engine]
Namespace: ILNumerics
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax
[ObsoleteAttribute("-> replace: array(v1,v2,v3,...) with: vector<T>(v1,v2,v3,...)!")] public static RetArray<T> array<T>( params T[] values )
Parameters
- values
- Type: T
Variable number of values for the new vector.
Type Parameters
- T
- Element type.
Return Value
Type: RetArrayTA vector of T elements, 1D in numpy array style, a column vector otherwise.
Remarks
[ILNumerics Computing Engine]
See Also