Click or drag to resize

DenseMatrixMultiply(DenseMatrix, DenseMatrix) Operator

Multiplies two matrices.

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

Parameters

leftSide  DenseMatrix
The left matrix to multiply.
rightSide  DenseMatrix
The right matrix to multiply.

Return Value

DenseMatrix
The result of multiplication.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf leftSide or rightSide is .
ArgumentExceptionIf the dimensions of leftSide or rightSide don't conform.
Remarks
This 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