Click or drag to resize

SparseMatrixMultiply(Double, SparseMatrix) Operator

Multiplies a Matrix by a constant and returns the result.

Namespace: Altaxo.Calc.LinearAlgebra.Double
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static SparseMatrix operator *(
	double leftSide,
	SparseMatrix rightSide
)

Parameters

leftSide  Double
The matrix to multiply.
rightSide  SparseMatrix
The constant to multiply the matrix by.

Return Value

SparseMatrix
The result of the multiplication.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf rightSide is .
See Also