up vote 4 down vote favorite
2
share [g+] share [fb]

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

link|improve this question
1  
Why would you want to? – Jason Punyon Apr 30 '09 at 19:39
feedback

4 Answers

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|improve this answer
0 / 0.0 works also.. (PS. THIS IS INSANE!) – Horace Loeb Apr 16 '11 at 23:13
feedback

If you need to test if a number is NaN, you can use #nan? on it:

ruby-1.8.7-p352 :008 > (0/0.0).nan? #=> true 
ruby-1.8.7-p352 :009 > (0/1.0).nan? #=> false 
link|improve this answer
feedback

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|improve this answer
that gives ZeroDivisionError: divided by 0 – tom hanky Apr 30 '09 at 19:54
Which version of Ruby are you using? – Nathan Kitchen Apr 30 '09 at 20:55
Note: 0/0 gives a ZeroDivisionError, but 0.0 / 0.0 does not. – Kudu Jan 16 '11 at 0:36
feedback

For practical purposes, Float::MAX will suffice, I think.

Float::MAX # => 1.7976931348623157e+308
link|improve this answer
1  
Float::MAX is nothing like NaN and they have very different behaviors. And in 1.9.2 there is Float::NAN anyway. – mu is too short Mar 26 '11 at 22:17
What I had in mind is using NaN as the sorting key when you want to sort an array that mostly consists of Numeric instances but may occasionally include something else, which you want to put at the end. I didn't know about Float::NAN. I will use NAN. Good to know that. – sawa Mar 27 '11 at 0:19
1  
Sorting would be a reasonable place to use MAX (or MIN) instead of NAN but I think explicitly handling the NaN case would be clearer and the people (possibly you) maintaining your code would be grateful for it. – mu is too short Mar 27 '11 at 5:42
feedback

Your Answer

 
or
required, but never shown