NaN is an abbreviation for "Not a Number"
0
votes
3answers
69 views
C/C++ NaN constant (literal)?
Is this possible to assign a NaN to a double in C/C++? Like in JavaScript you do: a = NaN. So later I can check if the variable is a number or no.
1
vote
0answers
30 views
NoSuchElementException when formatting number on Android, but not on Java SE
I am porting an existing application to Android, and stumbled upon the following problem. This piece of code works perfectly fine on Java SE:
String NAN_STRING = "";
DecimalFormatSymbols ...
1
vote
2answers
84 views
C/C++ NaN resolution
When I'm running some code I have to add up the elements of a vector and then renormalize. I'm getting NaN so I'm hoping to resolve this.
For example, when x = [1,2,3] is a vector<double> I ...
1
vote
2answers
76 views
Comparing nan (greater and greater equal)
I already know that if(nan != nan) -> TRUE, which is quite logical (sqrt(-1) has to be unequal to 0/0).
The following line of code is also logical:
if(nan > 90.0f) -> FALSE
...nan is not ...
0
votes
0answers
52 views
How to Sum the 2 result query from jquery
how can I sum 2 number from jquery. What I'm doing here is a chained select, my first select is Product (book), if they select jquery will display the price. my second select is Page (how many page) ...
0
votes
0answers
8 views
Setting NotANumberSymbol to an empty string?
why NSNumberFormatter's method setNotANumberSymbol:(NSString *)string ignores the empty string as a parameter (@"")? It even ignores the string, if it contains only spaces and zeros (@" 0 0 0 ")?
Is ...
0
votes
1answer
86 views
jquery - how to add two variables from .html()
I'm new to this and struggling to understand. How can I add two variables with .html(). All i got is Nan (not a number) or [object Object]. I've already tried parseInt and +.
...
3
votes
4answers
89 views
Signaling or catching 'nan' as they occur in computations in numerical code base in c++
We have numerical code written in C++. Rarely but under certain specific inputs, some of the computations result in an 'nan' value.
Is there a standard or recommended method by which we can ...
0
votes
1answer
14 views
Why i get NAN value when storing mmioRead result in double?
Why i get NAN value when trying to read .wav file and directly store it sample data in double? Before thinking about using this i was store the sample data in smallint and then convert it to double by ...
0
votes
1answer
63 views
implementation of isnan() function
I am a beginner to c++ programming and I am given a task of implementation of fixed point math arithmetic in c++. here I am trying to implementation a function isnan() which returns true if the ...
0
votes
2answers
73 views
C++ returns NaN after a sum
I'm running the following code:
double Scos [61][61][61] = {0};
double kdotr;
int ik;
int howmany [34] = {0};
auto Fs_ = initializer_list<int>({0});
copy(Fs_.begin(), ...
0
votes
1answer
34 views
Trouble with NaNs: set_index().reset_index() corrupts data
I read that NaNs are problematic, but the following causes an actual corruption of my data, rather than an error. Is this a bug? Have I missed something basic in the documentation?
I would like the ...
0
votes
2answers
72 views
Floating point - NaN
I am working on a research project on java in which some tough calculations have to be done. However I am done with most part but stuck at a point.. I have to calculate the following :
(2.1-2.3) ...
0
votes
3answers
43 views
I am getting NaN for an answer to my quadratic equation calculator- JAVA
This is my main class:
import java.util.Scanner;
public class calc {
public static void main(String[] args){
Scanner variablea = new Scanner(System.in);
Scanner variableb = new ...
0
votes
0answers
11 views
Apache commons Mann Whitney U Test returning P Value NaN
I'm not sure what else to include here. I'm using the Apache commons statistics library for the Mann Whitney U Test, and sometimes it's returning a P Value that is "NaN".
It's seemingly random, but ...
3
votes
3answers
73 views
fixedpoint implementation of function bool isnan( … ) in C++
i am doing fixed point implementation in c++ and i am trying to define “not-a-number” and support a function bool isnan( … ) which returns true if the number is not-a-number and false otherwise.
can ...
1
vote
1answer
44 views
Fill in missing pandas data with previous non-missing value, grouped by key
I am dealing with pandas DataFrames like this:
id x
0 1 10
1 1 20
2 2 100
3 2 200
4 1 NaN
5 2 NaN
6 1 300
7 1 NaN
I would like to replace each NAN 'x' with the ...
5
votes
2answers
77 views
How do I Convert NaN to a 0?
When a value is not entered in one of my forms, it creates a later result of NaN in the javascript. I just want to declare anytime NaN would show that it would instead show 0. I thought that by simply ...
1
vote
2answers
42 views
Matlab returning only NANs from a vector that has NaNs and non-NaNs
I have simulation data in a vector of size 50,000 x 1, which has NaNs and non-NaNs. I would like to average the non-NaNs, but the function nanmean returns NAN. I have tried removing the NANs, but I ...
-3
votes
4answers
80 views
Double data Type Parse “NaN” as “NaN” Why? [closed]
I'm parsing the "NaN" value in to double and it is giving me as "NaN".
double d = Double.parseDouble("NaN");
System.out.println(d);
It is printing the "NaN" value. I am surprised because I would ...
0
votes
3answers
86 views
Javascript number is NaN
I've been looking around and I can't seem to find out why this is happening or how to fix it. I've been trying different things for about 2 days, now its time to ask for help before I rip the rest of ...
1
vote
3answers
62 views
Javascript shows NaN in wrong form-field in IE - works in Firefox and chrome
I am trying to setup a small article chooser. While it works in Firefox and Chrome, as well as IE7, it has problems on IE8 and IE9.
In IE 8 and 9 it changes to "increase" field to "NaN" when ...
-1
votes
1answer
48 views
Finding the neighbourhood of certain pixels
I have an image which matrix has some pixels with value NaN. For such certain pixel, I want to compare its 8-neighbourhood, and assign it a value based on that neighborhood.
I think for the ...
0
votes
1answer
42 views
getting “NaN” results from for loop
First - so sorry for such a long post. I'm trying to be specific! Thanks for reading it :)
I have two vectors as follows:
popd = vector(mode='numeric', 100)
popr = vector(mode='numeric', 100)
These ...
3
votes
1answer
43 views
forced conversion of non-numeric numpy arrays with NAN replacement
Consider the array
x = np.array(['1', '2', 'a'])
Tying to convert to a float array raises an exception
x.astype(np.float)
ValueError: could not convert string to float: a
Does numpy provide any ...
0
votes
2answers
48 views
which one is correct? alert((+“123”)) alert(+“123”) alert(+(“123”))
I'm trying to convert a string to a float. I know that parseFloat() can do that, but I've also found the syntax below, but without much reference.
What is the correct syntax, because they all seem to ...
0
votes
1answer
33 views
NaN returned from this code
This code will not print our the roomC instead it returns nan I have traced back through the code and determined that the code
var minR = (Game.height * Game.width) / 300;
var maxR = (Game.height * ...
0
votes
2answers
43 views
MatLab - Padding arrays with something that wont be valued?
I'm comparing arrays of different sizes to find matches
Results = (DistancesB >= DistancesA * 0.1 & DistancesB < DistancesA * 1.5); % anything in this thres is matched
the arrays need to ...
0
votes
0answers
32 views
Jquery Array 1st returns number rest NaN
I tried parseInt and parseFloat. tot[0] always returns a number. I made sure the code goes wrong at this point by using the console.log command. tot[1-9] returns NaN . I tried using a while loop and a ...
0
votes
3answers
25 views
append string with matched substring
Im having issues with formatting a string received from the Twitter API. Im using timeago plugin and returns NaN in IE 10. After hunting it down it seems to be because the time recieved is formatted ...
1
vote
2answers
87 views
Checking for NaN in clojure
I have some algorithm which for one reason or another spits out NaNs, I would both like to just filter out these bad results for the time being, and some point later go and find out the problem. ...
0
votes
3answers
70 views
NaN is clearly a number, or is it?
I'm having a bit of trouble here. I checked to make sure my variable was defined only with numbers, but the code is still returning as not a number. Anyone know what I am doing wrong?
Code below:
...
2
votes
1answer
31 views
Which is the best practice for initializing a double in C++?
I'm wandering which is the best practice to initialize a double. It is better to initialize it to 0.0 or NaN? And why?
2
votes
2answers
54 views
Unexpected behaviour using na.rm
This reproducible example is a very simplified version of my code:
x <- c(NaN, 2, 3)
#This is fine, as expected
max(x)
> NaN
#Why does na.rm remove NaN?
max(x, na.rm=TRUE)
> 3
To me, NA ...
-2
votes
1answer
81 views
Getting NaN during calculation
I am trying to calculate the total of a selection of CDs in addition of P&P. The code I'm using is coming to a total of NaN?
Very confused here. what am I doing wrong?
function calculateTotal() ...
0
votes
2answers
39 views
Redefine Scanner's not-a-number recognition?
In Java, the class java.util.Scanner provides a convenient way to parse long strings. In my particular case I have to parse a string with many double values, for which I use the nextDouble() method.
...
1
vote
0answers
74 views
Is it possible to make isnan() work in gfortran -O3 -ffast-math?
I would like to compile a program with gfortran and -O3 -ffast-math enabled, since it gives a nice performance boost. I was rather confused, that gfortran's isnan() catched some NaN's but not all of ...
0
votes
2answers
96 views
javascript math.round and math.floor work fine in IE and Opera but not Chrome, Safari or Firefox. Getting NaN
Take a look at this fiddle:
http://jsfiddle.net/gD3ax/1/
or here's the full markup
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
0
votes
1answer
93 views
Wrong result from mean(x, na.rm = TRUE)
I want to compute the mean, min and max of a series of Managers returns, as follows:
ManagerRet <-data.frame(diff(Managerprices)/lag(Managerprices,k=-1))
I then replace return = 0 with NaN since ...
1
vote
1answer
77 views
JavaScript: Why is NaN !== NaN? [duplicate]
What is the reasoning? I believe this is the only value not equal to itself in JavaScript.
0
votes
4answers
102 views
javascript puts out NaN and i dont know why
Well, I got this problem with my Javascript homework. I need to make a binary translator and well Javascript does not really want me to...
It works but not really as it should... If I declare the ...
1
vote
0answers
56 views
cvCalibrateCamera2 returns matrix with NaN-elements
I'm trying to do a camera calibration using cvCalibrateCamera2() but run into a strage problem: the returned intrinsic_matrix and distortion_coeffs contain invalid floats (=NaN).
That's what I'm ...
0
votes
2answers
112 views
Using Javascript to calculate form fields — get NaN as a result
I have created a short form that is supposed to calculate values based on user input. I've got most of it figured out but can't seem to get the results to show up in the totals field. Instead, I get ...
0
votes
5answers
165 views
Identify if a string has any non-integer characters, in JavaScript [duplicate]
JavaScript parseInt() does not seem to work the same way as Java parseInt().
A very simple example is:
document.write(parseInt(" 60 ") + "<br>"); //returns 60
document.write(parseInt("40 ...
1
vote
3answers
254 views
Replace NaN values in a list with zero (0)
Hi dear I have a problem with NaN. I am working with a large dataset with many variables and they have NaN. The data is like this:
z=list(a=c(1,2,3,NaN,5,8,0,NaN),b=c(NaN,2,3,NaN,5,8,NaN,NaN))
I ...
6
votes
1answer
285 views
How to make sure NaNs propagate when using SSE intrinsics?
I recently read this about NaN values in SSE arithmetic operations:
The result of arithmetic operations acting on two not a number (NAN) arguments is undefined. Therefore, floating-point ...
1
vote
1answer
80 views
Way to get floating-point special values in CUDA?
Is there any device functinos in CUDA to obtain IEEE 754 special values like inf, NaN? I mean the stable way, not by some maths ops that could be optimized-out by compilers.
I only manage to find a ...
0
votes
3answers
77 views
Nan from maths equation
Hi I have the following equation in a piece of java code:
double z = 0.002378 * (Math.pow((1 - (Math.pow(6.875, -6) * y)), 4.2561));
when I set y to be very large values, i.e 200000 I get Nan (Not ...
1
vote
1answer
64 views
Receiving NaN from an anonymous function in matlab
I'd like to implement a piecewise periodic function, which should be zero in certain intervals and look like a test function elsewhere (e.g. exp(a^2/(abs(x)^2-a^2)) for abs(x)< a and zero ...
1
vote
3answers
149 views
Fast calculation of RMS gives NaNs in Java - floating point error?
I'm getting a perplexing result doing math with floats. I have code that should never produce a negative number producing a negative number, which causes NaNs when I try to take the square root.
...







