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("Use vector(..).Reshape(..) instead!")] public static RetArray<T> array<T>( T[] values, params int[] size )
Parameters
- values
- Type: T
Values for the new array will be copied from this System.Array. - size
- Type: SystemInt32
Size descriptor providing the dimension lengths 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