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.

Authors: Stefan Buehler

Synopsis

VectorMatrixMultiply( y, M, x )

Variables

GOUTy(Vector)The result of the multiplication (dimension m).
GINM(Matrix)The Matrix to multiply (dimension m x n).
GINx(Vector)The original Vector (dimension n).