SparseMatrixMultiply(SparseMatrix, SparseMatrix) Operator |
Multiplies two matrices.
Namespace: Altaxo.Calc.LinearAlgebra.Complex32Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntaxpublic static SparseMatrix operator *(
SparseMatrix leftSide,
SparseMatrix rightSide
)
Parameters
- leftSide SparseMatrix
- The left matrix to multiply.
- rightSide SparseMatrix
- The right matrix to multiply.
Return Value
SparseMatrixThe result of multiplication.
Exceptions
RemarksThis operator will allocate new memory for the result. It will
choose the representation of either leftSide or rightSide depending on which
is denser.
See Also