Click or drag to resize

FloatComplexEquality Operator

Tests for equality of two complex numbers.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static bool operator ==(
	FloatComplex left,
	FloatComplex right
)

Parameters

left  FloatComplex
A complex number.
right  FloatComplex
A complex number.

Return Value

Boolean
True if left.Real==right.Real and left.Imag==right.Imag; otherwise, false.
See Also