ARTS built-in documentation server
Workspace Method VectorLinSpace
Description
Initializes a vector 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 vector is [start, start+step, start+2*step, ...]
Authors: Patrick Eriksson
Synopsis
VectorLinSpace( | out, start, stop, step ) |
Variables
GOUT | out | (Vector) | Output vector. |
GIN | start | (Numeric) | Start value. |
GIN | stop | (Numeric) | Maximum/minimum value of the end value |
GIN | step | (Numeric) | Spacing of the vector. |