Tests whether two specified complex numbers are not equal.

Namespace:  AForge.Math
Assembly:  AForge.Math (in AForge.Math.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public static bool operator !=(
	Complex u,
	Complex v
)

Parameters

u
Type: AForge.Math..::.Complex
The left-hand complex number.
v
Type: AForge.Math..::.Complex
The right-hand complex number.

Return Value

Returns trueTruetruetrue (True in Visual Basic) if the two complex numbers are not equal or falseFalsefalsefalse (False in Visual Basic) otherwise.

See Also