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

GOUTout(Matrix)The result of the multiplication (dimension mxc).
GINm(Matrix)The Matrix to multiply (dimension mxn).
GINx(Matrix)The original Matrix (dimension nxc).