vote up 1 vote down star
1

Also "NaN".to_f returns 0 instead of NaN.

flag
1  
Why would you want to? – Jason Punyon Apr 30 at 19:39

2 Answers

vote up 3 vote down

The simplest way is to use 0.0 / 0.0. "NaN".to_f doesn't work, and there's some discussion in this thread about why.

link|flag
vote up 0 vote down

0.0 / 0.0 works for me on ruby 1.8.6.

The thread linked to by Pesto has this function, which should work on platforms where floating-point numbers are implemented according to IEEE 754:

def aNaN
    s, e, m = rand(2), 2047, rand(2**52-1)+1
    [sprintf("%1b%011b%052b", s,e,m)].pack("B*").unpack("G").first
end
link|flag
that gives ZeroDivisionError: divided by 0 – tom hanky Apr 30 at 19:54
Which version of Ruby are you using? – Nathan Kitchen Apr 30 at 20:55

Your Answer

Get an OpenID
or

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