Unix and Linux Discussions Tagged with argument |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
8 |
11,394 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,725 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
16,252 |
Shell Programming and Scripting |
|
|
|
3 |
4,713 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
11,742 |
Shell Programming and Scripting |
|
|
|
6 |
5,821 |
Shell Programming and Scripting |
|
|
|
1 |
3,798 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,801 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,555 |
Shell Programming and Scripting |
|
|
|
3 |
2,394 |
Shell Programming and Scripting |
|
|
|
6 |
15,512 |
Programming |
|
|
|
2 |
2,671 |
Programming |
|
|
|
7 |
7,162 |
Shell Programming and Scripting |
|
|
|
8 |
3,717 |
Shell Programming and Scripting |
|
|
|
2 |
65,302 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
36,560 |
Shell Programming and Scripting |
|
|
|
1 |
6,159 |
Shell Programming and Scripting |
|
|
|
12 |
7,951 |
Shell Programming and Scripting |
|
|
|
7 |
10,511 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
2,591 |
Shell Programming and Scripting |
|
|
|
4 |
5,763 |
Shell Programming and Scripting |
|
|
|
2 |
51,077 |
Shell Programming and Scripting |
|
|
|
4 |
69,898 |
Shell Programming and Scripting |
|
|
|
0 |
3,766 |
Complex Event Processing RSS News |
|
|
|
4 |
7,567 |
UNIX for Dummies Questions & Answers |
|
|
|
11 |
4,492 |
Shell Programming and Scripting |
|
|
|
1 |
2,025 |
Shell Programming and Scripting |
|
|
|
1 |
2,067 |
Shell Programming and Scripting |
|
|
|
0 |
10,718 |
IP Networking |
|
|
|
6 |
4,004 |
Shell Programming and Scripting |
|
|
|
1 |
8,921 |
Solaris |
|
|
|
6 |
1,968 |
Shell Programming and Scripting |
|
|
|
1 |
7,507 |
Shell Programming and Scripting |
|
|
|
2 |
16,462 |
Shell Programming and Scripting |
|
|
|
10 |
28,115 |
Shell Programming and Scripting |
|
|
|
1 |
19,072 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
6,219 |
Shell Programming and Scripting |
|
|
|
13 |
53,433 |
Shell Programming and Scripting |
|
|
|
2 |
2,806 |
Shell Programming and Scripting |
|
|
|
2 |
10,108 |
Shell Programming and Scripting |
isnormal(3M) isnormal(3M)
NAME
isnormal() - floating-point test for normalized value
SYNOPSIS
floating-type
DESCRIPTION
The macro determines whether its argument is a normalized value (neither zero, denormalized, infinite, nor NaN). The argument must be of
floating type, and classification is based on the type of the argument. For HP Integrity servers, the argument can be any floating type.
For PA-RISC, the argument must be either or
USAGE
To use the macro, compile either with the default option or with the and options. Make sure your program includes Link in the math library
by specifying on the compiler or linker command line.
RETURN VALUE
The macro returns a nonzero value if and only if its argument has a normalized value. The macro raises no floating-point exceptions.
ERRORS
No errors are defined.
EXAMPLES
Make sure a value is normalized before continuing operations on it:
SEE ALSO
fpclassify(3M), isfinite(3M), isinf(3M), isnan(3M), signbit(3M), math(5).
STANDARDS CONFORMANCE
isnormal(3M)