up vote 10 down vote favorite
share [g+] share [fb]

How do I create or test for NaN or infinite values in Perl?

link|improve this question

40% accept rate
feedback

3 Answers

up vote 7 down vote accepted

Here's a fairly reliable way:

my $inf = 9**9**9;
my $neginf = -9**9**9;
my $nan = -sin(9**9**9);

sub isinf { $_[0]==9**9**9 || $_[0]==-9**9**9 }
sub isnan { ! defined( $_[0] <=> 9**9**9 ) }
# useful for detecting negative zero
sub signbit { substr( sprintf( '%g', $_[0] ), 0, 1 ) eq '-' }

for my $num ( $inf, $neginf, $nan ) {
   printf("%s:\tisinf: %d,\tisnan: %d,\tsignbit: %d\n", $num, isinf($num), isnan($num), signbit($num));
}

Output is:

inf:    isinf: 1,   isnan: 0,   signbit: 0
-inf:   isinf: 1,   isnan: 0,   signbit: 1
nan:    isinf: 0,   isnan: 1,   signbit: 0
link|improve this answer
4  
On 5.10 and above, where the C library supports it, just 0+"nan", 0+"inf", or 0+"-inf" work too. – ysth Jul 26 '09 at 23:09
2  
@daotoad: yes, just an easy way. Some code unfortunately used things like 100**1000, which is infinite with IEEE double precision, but not infinite with long doubles. – ysth Jul 27 '09 at 3:31
5  
Just don't use this under bigint or you'll wonder why your program is hung. – brian d foy Jul 27 '09 at 4:17
4  
Right, under bigint, use Math::BigInt->bnan(), ->binf(), or ->binf('-'). – ysth Jul 27 '09 at 4:41
2  
I was more concern with cases where someone turned on bigint and you didn't notice. :) – brian d foy Jul 27 '09 at 21:57
show 3 more comments
feedback
print "Is NaN\n" if $a eq 'nan';
print "Is Inf\n" if $a eq 'inf';
link|improve this answer
One who down vote this answer, let you leave post if you not feel ashamed. This way works absolutely perfect in perl. If $a is number than string representation will be 'nan' or 'inf' only if it is NaN or Inf value. – Hynek -Pichi- Vychodil Oct 6 '09 at 14:39
What if $a is not a number, but is actually the string "nan"? – Ryan Thompson Oct 6 '10 at 6:38
@Ryan: String "nan" is not a number of course. ysth's solution works exactly same. Check perl -le 'sub isnan { ! defined( $_[0] <=> 9**9**9 ) }; print isnan("nan")' if you don't trust me. – Hynek -Pichi- Vychodil Oct 6 '10 at 19:20
feedback

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?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.