ILNumerics - Technical Application Development
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
New ILNumerics array initialized with val.
Creates a new ILNumerics array, all elements initialized with the given value.
[ILNumerics Computing Engine]
Namespace: ILNumerics
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax
public static RetArray<T> array<T>( T val, long dim0, long dim1, long dim2, long dim3, long dim4, long dim5, StorageOrders order = StorageOrders.ColumnMajor )
Parameters
- val
- Type: T
The value for the new elements. - dim0
- Type: SystemInt64
Length of dimension #0. - dim1
- Type: SystemInt64
Length of dimension #1. - dim2
- Type: SystemInt64
Length of dimension #2. - dim3
- Type: SystemInt64
Length of dimension #3. - dim4
- Type: SystemInt64
Length of dimension #4. - dim5
- Type: SystemInt64
Length of dimension #5. - order (Optional)
- Type: ILNumericsStorageOrders
[Optional] The storage order for the new array. Default: ColumnMajor.
Type Parameters
- T
- Element type.
Return Value
Type: RetArrayTNew ILNumerics array initialized with val.
Remarks
[ILNumerics Computing Engine]
See Also