Go to the first, previous, next, last section, table of contents.
- Macro: GSL_SIGN (x)
-
This macro returns the sign of x. It is defined as
((x) >= 0
? 1 : -1)
. Note that with this definition the sign of zero is positive
(regardless of its IEEE sign bit).
Go to the first, previous, next, last section, table of contents.