ILNumerics - Technical Application Development
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Array of T elements and a size according to size.
Note: This API is now obsolete.
Creates an array from values and size. 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(size, v1,v2,v3...) with: vector(v1,v2,v3,..).Reshape(size)!")] public static RetArray<T> array<T>( Size size, params T[] values )
Parameters
- size
- Type: ILNumericsSize
Source size descriptor providing the dimension lengths for the new array. - values
- Type: T
Values for the new array.
Type Parameters
- T
- Element type.
Return Value
Type: RetArrayTArray of T elements and a size according to size.
Exceptions
Exception | Condition |
---|---|
ArgumentException | if the size given by size does not match the number of values provided. |
Remarks
[ILNumerics Computing Engine]
See Also