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
GOUT | Y | (Matrix) | The result of the multiplication (dimension m x c). |
GIN | M | (Matrix) | The Matrix to multiply (dimension m x n). |
GIN | X | (Matrix) | The original Matrix (dimension n x c). |