ILNumerics Ultimate VS

ILMathcounter Method (Double, Double, Int64, Int64, Int64, StorageOrders)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Creates a new ILNumerics array with regularly spaced element values, 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,
	long dim1,
	long dim2,
	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.
dim1
Type: SystemInt64
Length of dimension #1.
dim2
Type: SystemInt64
Length of dimension #2.
order (Optional)
Type: ILNumericsStorageOrders
[Optional] The storage order for the new array. Default: ColumnMajor.

Return Value

Type: RetArrayDouble
New 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

Reference