ComplexMatrixElementWiseMultiply(DoubleMatrix, ComplexMatrix) Method

Determines the element wise product of two matrices.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static ComplexMatrix ElementWiseMultiply(
	DoubleMatrix left,
	ComplexMatrix right
)

Parameters

left  DoubleMatrix
The left operand.
right  ComplexMatrix
The right operand.

Return Value

ComplexMatrix
The result of element wise multiplying left by right.

Remarks

Let LaTeX equation and LaTeX equation be the left number of rows and columns, respectively, and consider its generic entry

LaTeX equation

Analogously, Let LaTeX equation and LaTeX equation be the right number of rows and columns, respectively, and let its generic entry given by

LaTeX equation

The method returns a matrix whose generic entry is

LaTeX equation

provided that the dimensions of left agree with those of right; otherwise, an exception is thrown.

Exceptions

ArgumentNullExceptionleft is null.
-or-
right is null.
ArgumentExceptionleft and right have not the same number of rows and columns.

See Also