ARTS built-in documentation server
Workspace Method ArrayOfIndexLinSpace
Description
Initializes an ArrayOfIndex with linear spacing.
The first element equals always the start value, and the spacing
equals always the step value, but the last value can deviate from
the stop value. *step* can be both positive and negative.
The created array is [start, start+step, start+2*step, ...]
Authors: Oliver Lemke
Synopsis
ArrayOfIndexLinSpace( | out, start, stop, step ) |
Variables
GOUT | out | (ArrayOfIndex) | Output array. |
GIN | start | (Index) | Start value. |
GIN | stop | (Index) | Maximum/minimum value of the end value |
GIN | step | (Index) | Spacing of the array. |