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( | gout1, gin1, gin2 ) |
Variables
GOUT | gout1 | (Vector) | The result of the multiplication (dimension m). |
GIN | gin1 | (Matrix) | The Matrix to multiply (dimension mxn). |
GIN | gin2 | (Vector) | The original Vector (dimension n). |