DoubleMatrixAdd(DoubleMatrix, Complex) Method

Determines the addition of a matrix to a scalar.

Definition

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

Parameters

left  DoubleMatrix
The left operand.
right  Complex
The right operand.

Return Value

ComplexMatrix
The result of adding left to right.

Remarks

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

LaTeX equation

The method returns a matrix having the same dimensions of left, whose generic entry is:

LaTeX equation

Exceptions

ArgumentNullExceptionleft is null.

See Also