HELP
An object that branches output if the data
input values are "almost" equal.

USE
Use If A ~= B to test for equality of two
floating-point numbers for the 7 most 
significant decimal digits, and branch
based on that test.

LOCATION
Flow ==> Conditional ==> If A ~= B

NOTES
If A ~= B is a preconfigured If/Then object
that tests the equality of the inputs.  You
cannot modify the condition or change the
data inputs.  You can use If/Then to change
the condition or data inputs.

The primary use of this object is to test
for equality between two floating-point
values where equality through the 7 most
significant digits is sufficient (less
significant digits are ignored).  The
floating-point datatypes include Real,
Coord, Complex, PComplex, Waveform, and
Spectrum.

The operation of X ~= 0 (zero) is 
meaningless in this context since zero
has an infinite number of digits of 
precision and no order of magnitude. This
requires that any comparison to zero 
match exactly.

If the inputs are "almost" equal, the Then
output is propagated with an Int32 scalar 1,
else the Else output is propagated with an
Int32 scalar 0.

SEE ALSO
Conditional, If/Then, If A == B, If A != B,
If A < B, If A > B, If A <= B, and If A >= B

Relational under Formula (~=).
