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 linearly spaced elements according to start and counting up/downwards by step along the storage order.
Creates a new ILNumerics array with regularly spaced element values in double precision.
[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<double> counter( double start, double step, long dim0, StorageOrders order = StorageOrders.ColumnMajor )
Parameters
- start
- Type: SystemDouble
The start value for the new elements. - step
- Type: SystemDouble
The step size value for the new elements. - dim0
- Type: SystemInt64
Length of dimension #0. - order (Optional)
- Type: ILNumericsStorageOrders
[Optional] The storage order for the new array. Default: ColumnMajor.
Return Value
Type: RetArrayDoubleNew ILNumerics array initialized with linearly spaced elements according to start and counting up/downwards by step along the storage order.
Remarks
[ILNumerics Computing Engine]
See Also