Matrix3RowFromVectors
- Workspace.Matrix3RowFromVectors(self: pyarts.arts._Workspace, output: pyarts.arts.WorkspaceVariable | pyarts.arts.Matrix, v1: pyarts.arts.WorkspaceVariable | pyarts.arts.Vector, v2: pyarts.arts.WorkspaceVariable | pyarts.arts.Vector, v3: pyarts.arts.WorkspaceVariable | pyarts.arts.Vector, verbosity: pyarts.arts.WorkspaceVariable | pyarts.arts.Verbosity | None = self.verbosity) None
Forms a matrix containing three rows from three vectors.
The vectors are included as rows in the matrix in the same order as they are given.
Author(s): Mattias Ekstrom
- Parameters:
output (Matrix) – Variable to initialize. [OUT]
v1 (Vector) – The vector to be copied into the first row. [IN]
v2 (Vector) – The vector to be copied into the second row. [IN]
v3 (Vector) – The vector to be copied into the third row. [IN]
verbosity (Verbosity) – ARTS verbosity. See
verbosity
, defaults toself.verbosity
[IN]