ARTS built-in documentation server
Workspace Method VectorSparseMultiply
Description
Multiply a Vector with a Sparse and store the result in another
Vector.
This just computes the normal matrix-vector product, y=M*x, with
m being a Sparse. It is ok if input and output Vector are the same.
Authors: Patrick Eriksson
Synopsis
VectorSparseMultiply( | y, M, x ) |
Variables
GOUT | y | (Vector) | The result of the multiplication (dimension m). |
GIN | M | (Sparse) | The Sparse to multiply (dimension m x n). |
GIN | x | (Vector) | The original Vector (dimension n). |