ARTS built-in documentation server

Workspace Method VectorMatrixMultiply

Description

Multiply a Vector with a Matrix and store the result in another
Vector.

This just computes the normal Matrix-Vector product, y=M*x. It is ok
if input and output Vector are the same. This function is handy for
multiplying the H Matrix to spectra.

Authors: Stefan Buehler

Synopsis

VectorMatrixMultiply( out, m, v )

Variables

GOUTout(Vector)The result of the multiplication (dimension m).
GINm(Matrix)The Matrix to multiply (dimension mxn).
GINv(Vector)The original Vector (dimension n).