IMSL C# Numerical Library

SparseMatrix.Multiply Method

Multiply two sparse matrices, C \leftarrow AB.

Overload List

Multiply two sparse matrices, C \leftarrow AB.

public static SparseMatrix Multiply(SparseMatrix,SparseMatrix);

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

public static double[] Multiply(SparseMatrix,double[]);

Multiply the matrix by a vector.

public double[] Multiply(double[]);

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

public static double[] Multiply(double[],SparseMatrix);

See Also

SparseMatrix Class | Imsl.Math Namespace