I have a program that more or less tries to widdle a double down to a desired number. The output i get though, instead of being that final double is NaN
What does this mean?
|
|
|
Taken from this page:
|
|||||||||||
|
|
|
|||
|
|
|
A conversion will result in this value, when unexpected the value cannot be converted (for example by converting a string that does not represent a number into a float). |
|||
|
|
|
There is a good description of NaN and of the common pitfalls when using NaN in Java: http://ppkwok.blogspot.co.uk/2012/11/java-cafe-1-never-write-nan-nan_24.html |
|||
|
|
|
See here for more explanation of this value. |
|||
|
|
|
Not a Java guy, but in JS and other languages I use it's "Not a Number", meaning some operation caused it to become not a valid number. |
|||
|
|
|
It literally means "Not a Number." I suspect something is wrong with your conversion process. Check out the Not A Number section at this reference |
|||
|
|
|
Not a valid floating-point value (e.g. the result of division by zero) |
|||
|
|
|
NaN stands for Not a Number. It is used to signify any value that is mathematically undefined. Like dividing 0.0 by 0.0. You can look here for more information: http://www.concentric.net/~Ttwang/tech/javafloat.htm Post your program here if you need more help. |
|||
|
|
|
Means Not a Number. It is a common representation for an impossible numeric value in many programming languages. |
|||
|
|