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.

Authors: Stefan Buehler

Synopsis

MatrixMatrixMultiply( Y, M, X )

Variables

GOUTY(Matrix)The result of the multiplication (dimension m x c).
GINM(Matrix)The Matrix to multiply (dimension m x n).
GINX(Matrix)The original Matrix (dimension n x c).