Tagged Questions

NaN is an abbreviation for "Not a Number"

learn more… | top users | synonyms

64
votes
10answers
57k views

Checking if a double (or float) is nan in C++

is there an isnan() function? p.s. I'm in mingw (if that makes a difference) UPDATE Thanks for the responses I had this solved by using isnan() form <math.h>, which doesn't exist in ...
51
votes
6answers
1k views

Why does Double.NaN==Double.NaN return false?

I was just studying OCPJP questions and I found this strange code: public static void main(String a[]) { System.out.println(Double.NaN==Double.NaN); ...
20
votes
11answers
6k views

Why does isNaN(“ ”) equal false

I have a quick question (I hope!). In JS, why does isNaN(" ") evaluate to false, but isNaN(" x") evaluate to true? I'm performing numerical operations on a text input field, and am checking if ...
20
votes
7answers
16k views

Using NaN in C++?

What's the best way to use NaNs in C++? I found std::numeric_limits<double>::quiet_NaN() and std::numeric_limits<double>::signaling_NaN(). I'd like to use signaling_NaN to represent an ...
13
votes
5answers
373 views

Sorting an array of Doubles with NaN in it

This is more of a 'Can you explain this' type of question than it is anything else. I came across a problem at work where we were using NaN values in a table, but when the table was sorted, it came ...
10
votes
4answers
152 views

Is NaN a valid key value for associative containers?

Consider the ordered and unordered associative containers in C++ keyed on double. Is NaN a valid key type? With ordered containers, I should say "no", because it does not respect the strict weak ...
10
votes
3answers
447 views

Fast check for NaN in NumPy

I'm looking for the fastest way to check for the occurrence of NaN (np.nan) in a NumPy array X. np.isnan(X) is out of the question, since it builds a boolean array of shape X.shape, which is ...
10
votes
3answers
3k views

How do I create or test for NaN or infinity in Perl?

How do I create or test for NaN or infinite values in Perl?
9
votes
3answers
197 views

In Scala, why is NaN not being picked up by pattern matching?

My method is as follows def myMethod(myDouble: Double): Double = myDouble match { case Double.NaN => ... case _ => ... } The IntelliJ debugger is showing NaN but this is not being ...
9
votes
1answer
112 views

NaNs as key in dictionaries

Can anyone explain the following behaviour to me? >>> import numpy as np >>> {np.nan: 5}[np.nan] 5 >>> {float64(np.nan): 5}[float64(np.nan)] KeyError: nan Why does it ...
9
votes
2answers
531 views

How to generate NaN, -Infinity and +Infinity in ANSI C?

I use ANSI C89 (not C++), and I want to generate NaN, -Infinity and +Infinity numbers. Is there any standard way (eg. standard macro)? Or is there any platform and compiler independent way to ...
9
votes
6answers
747 views

Negative NaN is not a NaN?

While writing some test cases, and some of the tests check for the result of a NaN. I tried using std::isnan but the assert failes: Assertion `std::isnan(x)' failed. After printing the value of x, ...
9
votes
1answer
1k views

How can I plot NaN values as a special color with imshow in matplotlib?

I am trying to use imshow in matplotlib to plot data as a heatmap, but some of the values are NaNs. I'd like the NaNs to be rendered as a special color not found in the colormap. example: import ...
9
votes
4answers
2k views

Equality with Double.NaN

I have the following code... if (Price_Foreign != Double.NaN) { output.Append(spacer); output.Append(String.Format("{0,-10:C} USD",Price_Foreign)); } Which outputs: NaN USD What gives? ...
8
votes
5answers
476 views

c# NaN comparison differences between Equals() and ==

Check this out : var a = Double.NaN; Console.WriteLine(a == a); Console.ReadKey(); Prints "False" var a = Double.NaN; Console.WriteLine(a.Equals(a)); Console.ReadKey(); ...
8
votes
9answers
804 views

Is it a good idea to use IEEE754 floating point NaN for values which are not set?

Is it a good idea to use IEEE754 floating point NaN (not-a-number) for values which are undefined for non-mathematical reasons? In our case they are not yet set because the values have not been ...
8
votes
6answers
1k views

Alternatives to nullable types in C#

I am writing algorithms that work on series of numeric data, where sometimes, a value in the series needs to be null. However, because this application is performance critical, I have avoided the use ...
7
votes
4answers
236 views

C# what does NaN mean for doubles?

What's the difference between NaN and Infinity? When does NaN appear? What is it?
7
votes
6answers
208 views

Math.Max vs Enumerable.Max

Jon Skeet reports today (source) that : Math.Max(1f, float.NaN) == NaN new[] { 1f, float.NaN }.Max() == 1f Why? Edit: same issue with double also!
7
votes
1answer
288 views

Force all QNaN to instead be normal NaN (SNaN) so exceptions are thrown

I've configured Visual Studio to throw floating point exceptions via the _controlfp function. This works for NAN and INF, but not QNAN. I.e. Quiet NaNs don't cause an exception to be raised. Is ...
7
votes
4answers
246 views

matlab: quick function that can produce NaN if x > 1

I am looking for a one-line function f = @(x) {something} that produces NaN if x >= 1, and either 0 or 1 if x < 1. Any suggestions?
7
votes
2answers
1k views

How does Double.isNaN() work?

The sun jdk implementation looks like this: return v != v; Can anyone explain how that works?
7
votes
9answers
519 views

What is the rationale for all comparisons returning false for IEEE754 NaN values?

Why do comparisons of NaN values behave differently from all other values? That is, all comparisons with the operators ==, <=, >=, <, > where one or both values is NaN returns false, contrary to ...
6
votes
2answers
144 views

Finding the calculation that generates a NaN

I have a moderately large piece (a few thousand lines) of Python/Numpy/Scipy code that is throwing up NaNs with certain inputs. I've looked for, and found, some of the usual suspects (log(0) and the ...
6
votes
3answers
461 views

How to distinguish different types of NaN float in Python

I'm writing Python 2.6 code that interfaces with NI TestStand 4.2 via COM in Windows. I want to make a "NAN" value for a variable, but if I pass it float('nan'), TestStand displays it as IND. ...
6
votes
11answers
12k views

In Java what does NaN mean

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?
6
votes
1answer
468 views

Why do MSTests Assert.AreEqual(1.0, double.NaN, 0.0) pass?

Short question, why do Assert.AreEqual(1.0, double.NaN, 0.0) pass when Assert.AreEqual(1.0, double.NaN) do not? Is it an error in MSTest or am I missing something here? Best regards, Egil. Update: ...
6
votes
4answers
3k views

In ActionScript (NaN==parseFloat(input.text)) warns that it will always be false. Why?

Despite the rather clear documentation which says that parseFloat() can return NaN as a value, when I write a block like: if ( NaN == parseFloat(input.text) ) { errorMessage.text = "Please enter a ...
5
votes
2answers
962 views

remove row with nan value

let's say, for example, i have this data: data <- c(1,2,3,4,5,6,NaN,5,9,NaN,23,9) attr(data,"dim") <- c(6,2) data [,1] [,2] [1,] 1 NaN [2,] 2 5 [3,] 3 9 [4,] 4 NaN ...
5
votes
3answers
247 views

Why check for !isNaN() after isFinite()?

I came across the goog.math.isFiniteNumber function in the Google Closure Library. What it does is checking whether a given number is both finite and not NaN. The underlying code is: ...
5
votes
4answers
264 views

Python: sort function breaks in the presence of nan

sorted(2, float('nan'), 1) returns [2, nan, 1] (At least on Activestate Python 3.1 implementation.) I understand nan is a weird object, so I wouldn't be surprised if it shows up in random places in ...
5
votes
1answer
204 views

How slow is NaN arithmetic in the Intel x64 FPU?

Hints and allegations abound that arithmetic with NaNs can be 'slow' in hardware FPUs. Specifically in the modern x64 FPU, e.g on a Nehalem i7, is that still true? Do FPU multiplies get churned out at ...
5
votes
6answers
501 views

Why JavaScript says that a number is not a number?

I have a piece of JavaScript code which is expected to set an integer value to a variable. Something is broken, so when I try to do alert(A);, it returns NaN. isNaN(A); returns true. But if I ...
5
votes
1answer
179 views

“isnotnan” functionality in numpy, can this be more pythonic?

I need a function that returns non-NaN values from an array. Currently I am doing it this way: >>> a = np.array([np.nan, 1, 2]) >>> a array([ NaN, 1., 2.]) >>> ...
5
votes
3answers
388 views

What are the other NaN values?

The documentation for java.lang.Double.NaN says that it is A constant holding a Not-a-Number (NaN) value of type double. It is equivalent to the value returned by ...
4
votes
3answers
125 views

Can float (or double) be set to NaN?

Note: Similar to C++ can int be NaN? I understand this has little practical purpose, but can a float or double be set to NaN?
4
votes
6answers
374 views

C++ float number to nan

I want to know what makes a float number nan in c++. I am using a large dataset and it is really hard to trace. I want to know the ways of changing a float number to nan to reduce bug possibilities. ...
4
votes
3answers
2k views

python nan and inf values

is it possible to set a number or an element of an array to NaN in Python? Additionally, is it possible to set a variable to +/- Inf? If so, is there any function to check whether a number is Inf or ...
4
votes
2answers
152 views

array.indexOf can't find NaN

[1, 2, 3].indexOf(3) => 2 [1, 2, NaN].indexOf(NaN) => -1 [1, NaN, 3].indexOf(NaN) => -1
4
votes
2answers
144 views

Can I get Java to throw an exception when doing a comparison between floats when one of them turns out to be NaN?

I spent about 2 hours tracking down a bug today and I would've found it much quicker had java thrown an exception when comparing NaN with a float. It would be nice if I could protect myself from this ...
4
votes
4answers
2k views

CALayerInvalidGeometry exception during HTML5 video play (iOS 4.2 Problem)

After updating to the iOS 4.2 SDK, i receive the following exception in my app: Terminating app due to uncaught exception 'CALayerInvalidGeometry', reason: 'CALayer position contains NaN: [nan 22]' ...
4
votes
4answers
4k views

MATLAB: Using interpolation to replace missing values (NaN)

I have cell array each containing a sequence of values as a row vector. The sequences contain some missing values represented by NaN. I would like to replace all NaNs using some sort of interpolation ...
4
votes
1answer
688 views

Is there a better way of making numpy.argmin() ignore NaN values

I want to get the index of the min value of a numpy array that contains NaNs and I want them ignored >>> a = array([ nan, 2.5, 3., nan, 4., 5.]) >>> a array([ NaN, ...
4
votes
4answers
313 views

How do I force 0.0/0.0 to return zero instead of NaN in MIPSPro C compiler?

As the question states, I am using the MIPSPRo C compiler, and I have an operation that will return NaN for some data sets where both the numerator and denom are zero. How do I keep this from ...
4
votes
4answers
2k views

In Javascript, how to avoid NaN when adding arrays

I'm trying to add the values of two arrays in javascript eg. [1,2,1] + [3,2,3,4] The answer should be 4,4,4,4 but I'm either getting 4,4,4 or 4,4,4,NaN if I change the 1st array length to 4. I ...
4
votes
4answers
1k views

How do I declare NaN (not a number) in Ruby?

Also "NaN".to_f returns 0 instead of NaN.
4
votes
1answer
1k views

what is the reserved keyword for NaN in javascript?

if i want to test the result of an expression and the function would return NaN how would i check that? examples: $('amount').value.toInt()!='NaN' ^ does not work and i assume that the returned value ...
4
votes
3answers
3k views

In Java, what happens if you use Double.NaN in an operation?

I have compiled code that erroneously tries to add a number and Double.NaN. I'm wondering if it's throwing an exception that's not getting caught? Does anyone know how that situation is handled? ...
4
votes
4answers
1k views

How to use std::signaling_nan?

After looking at another question on SO (Using NaN in C++) I became curious about std::numeric_limits<double>::signaling_NaN(). I could not get signaling_NaN to throw an exception. I thought ...
3
votes
3answers
46 views

how do I get rid of isNaN from form results?

I'm creating a little calculator. Part of this will allow you to input upto 4 numbers but you could just have 1,2 or 3 as well. I've got the code working except for when I only enter 1, 2 or 3 numbers ...

1 2 3 4