IMSL C# Numerical Library

ComplexSparseMatrix.Multiply Method

Multiply the matrix by a vector.

Overload List

Multiply the matrix by a vector.

public Complex[] Multiply(Complex[]);

Multiply row array x and sparse matrix A, x^TA.

public static Complex[] Multiply(Complex[],ComplexSparseMatrix);

Multiply sparse matrix A and column array x, A x.

public static Complex[] Multiply(ComplexSparseMatrix,Complex[]);

Multiply two sparse matrices, C \leftarrow AB.

public static ComplexSparseMatrix Multiply(ComplexSparseMatrix,ComplexSparseMatrix);

See Also

ComplexSparseMatrix Class | Imsl.Math Namespace