ARTS built-in documentation server

Workspace Method MatrixVectorMultiply

Description

Multiply a Matrix with a Vector

Computes the normal Matrix-Vector product, out=m*v. It is ok if out and v
are the same Vector.

Authors: Stefan Buehler and Patrick Eriksson

Synopsis

MatrixVectorMultiply( out, m, v )

Variables

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