ARTS built-in documentation server
Workspace Method VectorLogSpace
Description
Initializes a vector with logarithmic spacing.
The first element equals always the start value, and the spacing
equals always the step value, but note that the last value can
deviate from the stop value. The keyword step can be both positive
and negative.
Note, that although start has to be given in direct coordinates,
step has to be given in log coordinates.
Explicitly, the vector is:
exp([ln(start), ln(start)+step, ln(start)+2*step, ...])
Authors: Stefan Buehler
Synopsis
VectorLogSpace( | out, start, stop, step ) |
Variables
GOUT | out | (Vector) | Variable to initialize. |
GIN | start | (Numeric) | The start value. (Direct coordinates!) |
GIN | stop | (Numeric) | The maximum value of the end value. (Direct coordinates!) |
GIN | step | (Numeric) | The spacing of the vector. (Log coordinates!) |