vote up 4 vote down star

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

flag

40% accept rate

3 Answers

vote up 4 vote down check

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|flag
2  
On 5.10 and above, where the C library supports it, just 0+"nan", 0+"inf", or 0+"-inf" work too. – ysth Jul 26 at 23:09
Very energetic of you: 13 minutes ago, you ask the question; 11 minutes ago, you answer it; 9 minutes ago, you post a comment. You should buy yourself a beer or something. – Telemachus Jul 26 at 23:21
1  
@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 at 3:31
3  
Just don't use this under bigint or you'll wonder why your program is hung. – brian d foy Jul 27 at 4:17
3  
Right, under bigint, use Math::BigInt->bnan(), ->binf(), or ->binf('-'). – ysth Jul 27 at 4:41
show 3 more comments
vote up 0 vote down
print "Is NaN\n" if $a eq 'nan';
print "Is Inf\n" if $a eq 'inf';
link|flag
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 at 14:39
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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