How do I create or test for NaN or infinite values in Perl?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Here's a fairly reliable way:
Output is:
|
|||||||||||||||||||||
|
EDIT: Fixed for negative infinity. |
|||||||||||||
|
|
Personally, I would use Math::BigFloat (or BigInt) for anything that is going to touch infinity of NaN. Why reinvent the wheel with a hack solution when there are already modules that do the job? |
|||
|
|
|
Use Data::Float from CPAN. It exports the following functions:
And contrary to the others half-working solutions posted here, it has a testsuite. |
||||
|
|
|
Succinct answer that works follows. 1: How to create a "NAN" variable for output (to printf, for example):
2: How to test for "NAN" (looks like ascii art):
3: How to create an "INF" and INFN variables:
4: How to test for "INF" (of any sign):
|
|||||||||||||||
|