ILNumerics.Net - numeric computing for .NET
Equality comparison for 2 complex numbers.

Namespace:  ILNumerics
Assembly:  ILNumerics.Net (in ILNumerics.Net.dll)
Version: 1.3.12.0 (0.9.28.0)

Syntax

C#
public static bool operator ==(
	int in1,
	complex in2
)
Visual Basic (Declaration)
Public Shared Operator = ( _
	in1 As Integer, _
	in2 As complex _
) As Boolean
Visual C++
public:
static bool operator ==(
	int in1, 
	complex in2
)

Parameters

in1
Type: System..::.Int32
The first complex number.
in2
Type: ILNumerics..::.complex
The 2nd complex number.

Return Value

true if real and imaginary parts of both inputs are the same. False otherwise.

See Also