VectorLinSpace

Workspace.VectorLinSpace(self: pyarts.arts._Workspace, output: pyarts.arts.WorkspaceVariable | pyarts.arts.Vector, start: pyarts.arts.WorkspaceVariable | pyarts.arts.Numeric, stop: pyarts.arts.WorkspaceVariable | pyarts.arts.Numeric, step: pyarts.arts.WorkspaceVariable | pyarts.arts.Numeric, verbosity: pyarts.arts.WorkspaceVariable | pyarts.arts.Verbosity | None = self.verbosity) None

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, …]

Author(s): Patrick Eriksson

Parameters:
  • output (Vector) – Output vector. [OUT]

  • start (Numeric) – Start value. [IN]

  • stop (Numeric) – Maximum/minimum value of the end value. [IN]

  • step (Numeric) – Spacing of the vector. [IN]

  • verbosity (Verbosity) – ARTS verbosity. See verbosity, defaults to self.verbosity [IN]