ILNumerics - Technical Application Development
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
New array according to size with all elements set to 'value'
Note: This API is now obsolete.
Create new array, fill element with constant value
[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(value, s1, s2) with: array(value, size(s1,s2))!")] public static RetArray<T> array<T>( T value, params int[] size )
Parameters
- value
- Type: T
Constant value for all elements - size
- Type: SystemInt32
Size of new array
Type Parameters
- T
- Element type
Return Value
Type: RetArrayTNew array according to size with all elements set to 'value'
Remarks
[ILNumerics Computing Engine]
See Also