ARTS built-in documentation server
Workspace Method MatrixMatrixMultiply
Description
Multiply a Matrix with another Matrix and store the result in the result
Matrix.
This just computes the normal Matrix-Matrix product, Y=M*X. It is ok
if Y and X are the same Matrix. This function is handy for
multiplying the H Matrix to batch spectra.
Authors: Stefan Buehler
Synopsis
MatrixMatrixMultiply( | out, m, x ) |
Variables
GOUT | out | (Matrix) | The result of the multiplication (dimension mxc). |
GIN | m | (Matrix) | The Matrix to multiply (dimension mxn). |
GIN | x | (Matrix) | The original Matrix (dimension nxc). |