User guide

WintDrive
fcmp
Description
It compares the data read by input port
a
with the data read by input port
b.
If
a
<
b
it shows 0 in output port o.
If
a
=
b
it shows 1 in output port o.
If
a
>
b
it shows 2 in output port o.
if(a<b)
o=o;
elseif
( a == b )
o= 1;
elseif
( g > 2 )
0 = 2;
Input ports
name type
alternative type function
a
float
Data
a
to
be compared
b
float
Data
b
to
be compared
woo63
output ports
name type alternative type
fknction
0
float Result of the comparison
wDo64
Parameters
No
parameters
75