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
GOUT | out | (Vector) | The result of the multiplication (dimension m). |
GIN | m | (Matrix) | The Matrix to multiply (dimension mxn). |
GIN | v | (Vector) | The original Vector (dimension n). |