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( gout1, gin1, gin2 )

Variables

GOUTgout1(Matrix)The result of the multiplication (dimension mxc).
GINgin1(Matrix)The Matrix to multiply (dimension mxn).
GINgin2(Matrix)The original Matrix (dimension nxc).