isinf
isinf — determines if a number is infinite.
isinf (number)
numberA floating point number.
1 if the number is positive and infinite,
-1 if it is negative and infinite, otherwise nil.
These examples use the constant INF, which represents an infinite number in Gamma.
Gamma>isinf(95);nilGamma>isinf(INF);1Gamma>isinf(-INF);-1