ARTS built-in documentation server

Workspace Method VectorLinSpace

Description

Creates 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( v, start, stop, step )

Variables

GOUTv(Vector)Output vector.
GINstart(Numeric)Start value.
GINstop(Numeric)Maximum/minimum value of the end value
GINstep(Numeric)Spacing of the vector.