0
votes
1answer
5 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 rega …
0
votes
1answer
16 views
Blank when NaN in jqGrid cells.
How to set blank instead of NaN in jqGrid cells ? Using formatter ? Is there an example?
0
votes
3answers
104 views
MATLAB: Find all NaN elements inside an Array
Is there a command in MATLAB that allows me to find all NaN (Not-a-Number) elements inside an array?
0
votes
0answers
3 views
Checking NAN or -NAN In Access 2007
We are in the process of migrating Access 2007 to SQL 2005.
We have a table with about 200 columns of float fields. Some of the fields have values
of positive infinity or negati …
2
votes
10answers
131 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 return …
8
votes
10answers
315 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 …
0
votes
1answer
123 views
How do I initialize number with NaN in Borland C++?
How do I initialize number with NaN in Borland C++?
duplicate: Using NaN in C++?
4
votes
3answers
284 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?
1
vote
5answers
309 views
What do these three special floating-point values mean: positive infinity, negative infinity, NaN?
How can we use them in our codes, and what will cause NaN(not a number)?
2
votes
3answers
258 views
How do you get VB6 to initialize doubles with +infinity, -infinity and NaN?
VB6 doesn't appear to make it that easy to store +infinity, -infinity and NaN into double vars. It would help if it could so that I could do comparisons with those values in the co …
7
votes
5answers
456 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 …
5
votes
10answers
551 views
Why does isNaN(” “) equal false
Hi, all.
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 inpu …
1
vote
2answers
246 views
How do I declare NaN (not a number) in Ruby?
Also "NaN".to_f returns 0 instead of NaN.
1
vote
4answers
2k views
Getting a integer value from a textbox, how to check if it’s NaN or null etc?
I am pulling a value via JavaScript from a textbox.
If the textbox is empty, it returns NaN.
I want to return an empty string if it's null, empty,etc.
What check do I do?
if(NA …
1
vote
3answers
382 views
Break into C# debugger for divide by zero
I'm using C# with the XNA library and I'm getting NaNs cropping up in my Vector3 objects. Is there a way to break into the debugger when the offending calculation happens (e.g. a d …
