Unix and Linux Discussions Tagged with real |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
0 |
5,198 |
Programming |
|
|
|
0 |
1,534 |
Complex Event Processing RSS News |
|
|
|
0 |
2,364 |
Complex Event Processing RSS News |
|
|
|
0 |
1,458 |
Complex Event Processing RSS News |
|
|
|
0 |
2,589 |
Solaris BigAdmin RSS |
|
|
|
5 |
13,345 |
Shell Programming and Scripting |
|
|
|
1 |
7,362 |
UNIX and Linux Applications |
|
|
|
0 |
1,728 |
Complex Event Processing RSS News |
|
|
|
0 |
864 |
Software Releases - RSS News |
|
|
|
1 |
5,756 |
Solaris |
|
|
|
3 |
15,871 |
Programming |
|
|
|
1 |
2,368 |
Solaris |
|
|
|
0 |
1,306 |
Complex Event Processing RSS News |
|
|
|
0 |
842 |
Software Releases - RSS News |
|
|
|
0 |
1,348 |
Security Advisories (RSS) |
|
|
|
0 |
1,174 |
Complex Event Processing RSS News |
|
|
|
0 |
3,261 |
Virtualization and Cloud Computing |
|
|
|
0 |
2,571 |
Programming |
|
|
|
0 |
2,054 |
Complex Event Processing RSS News |
|
|
|
0 |
1,771 |
Complex Event Processing RSS News |
|
|
|
0 |
1,898 |
Cartoons for Geeks |
|
|
|
0 |
1,271 |
Complex Event Processing RSS News |
|
|
|
0 |
1,689 |
Complex Event Processing RSS News |
|
|
|
0 |
1,380 |
UNIX and Linux RSS News |
|
|
|
0 |
1,574 |
Oracle Updates (RSS) |
|
|
|
0 |
1,703 |
Security Advisories (RSS) |
|
|
|
0 |
1,139 |
Software Releases - RSS News |
|
|
|
7 |
5,521 |
Programming |
|
|
|
0 |
1,692 |
Complex Event Processing RSS News |
|
|
|
0 |
1,160 |
Software Releases - RSS News |
|
|
|
0 |
2,457 |
Complex Event Processing RSS News |
|
|
|
0 |
941 |
Software Releases - RSS News |
|
|
|
6 |
16,102 |
Shell Programming and Scripting |
|
|
|
1 |
5,751 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
6,340 |
Cybersecurity |
|
|
|
2 |
4,460 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
5,030 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
2,233 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
10,577 |
Programming |
|
|
|
3 |
4,171 |
UNIX for Dummies Questions & Answers |
ISGREATER(3) BSD Library Functions Manual ISGREATER(3)
NAME
isgreater, isgreaterequal, isless, islessequal, islessgreater, isunordered -- compare two floating-point numbers
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <math.h>
int
isgreater(real-floating x, real-floating y);
int
isgreaterequal(real-floating x, real-floating y);
int
isless(real-floating x, real-floating y);
int
islessequal(real-floating x, real-floating y);
int
islessgreater(real-floating x, real-floating y);
int
isunordered(real-floating x, real-floating y);
DESCRIPTION
Each of the macros isgreater(), isgreaterequal(), isless(), islessequal(), and islessgreater() takes arguments x and y and returns a non-zero
value if and only if its nominal relation on x and y is true. These macros always return zero if either argument is not a number (NaN), but
unlike the corresponding C operators, they never raise a floating point exception.
The isunordered() macro takes arguments x and y, returning non-zero if either x or y is NaN. For any pair of floating-point values, one of
the relationships (less, greater, equal, unordered) holds.
SEE ALSO
fpclassify(3), math(3), signbit(3)
STANDARDS
The isgreater(), isgreaterequal(), isless(), islessequal(), islessgreater(), and isunordered() macros conform to ISO/IEC 9899:1999
(``ISO C99'').
BSD
December 1, 2008 BSD