Click or drag to resize

DenseMatrix.Multiply(Complex32, DenseMatrix) Operator

Multiplies a Matrix by a constant and returns the result.

Namespace: Altaxo.Calc.LinearAlgebra.Complex32
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntax
C#
public static DenseMatrix operator *(
	Complex32 leftSide,
	DenseMatrix rightSide
)

Parameters

leftSide  Complex32
The matrix to multiply.
rightSide  DenseMatrix
The constant to multiply the matrix by.

Return Value

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