Compares this object with the Complex number given as parameter b. The tolerance parameter is the radius within which the b number must lie for the two complex numbers to be considered equal.

Namespace:  SingularSys.Jep.Types
Assembly:  Jep (in Jep.dll) Version: 1.1.0.0 (1.0.0)

Syntax

C#
public bool IsEqual(
	Complex b,
	double tolerance
)
Visual Basic (Declaration)
Public Function IsEqual ( _
	b As Complex, _
	tolerance As Double _
) As Boolean
Visual C++
public:
bool IsEqual(
	Complex^ b, 
	double tolerance
)

Parameters

b
Type: SingularSys.Jep.Types..::.Complex
tolerance
Type: System..::.Double

Return Value

true if the complex number are considered equal, false otherwise

See Also