Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the meaning of the symbol -1.$e+000? In what category are these kind of things included or with what keywords I can search them?

enter image description here

EDIT: After increasing precision this is what I got:

enter image description here

share|improve this question
It's not really a "symbol" per se. I suppose that depends on what abstraction layer you're talking about, though. :) – Lightness Races in Orbit Jan 31 '12 at 14:47
Could you be more explicit please? – Shibli Jan 31 '12 at 14:56
Not without knowing which direction you want me to be more explicit in. What do you want to know? – Lightness Races in Orbit Jan 31 '12 at 14:56
Now, where did you see -1.$e+000? Can you show us? – Lightness Races in Orbit Jan 31 '12 at 14:58
show 1 more comment

2 Answers

up vote 4 down vote accepted

When you see -1.#INF, -1.#IND and similar text for formatted numerical output, you're on Microsoft Visual Studio and you're seeing a special floating-point type that cannot be represented by a number... that is, either infinity or NaN ("not a number").

You can get the variant -1.#J by specifying precision in printf, and you can get -1.$ by specifying low precision in iostreams.

The e+000 is just a suffix from scientific notation, indicating an exponent of 0. It's safely ignored.

On Linux GCC you tend to see the text inf and nan instead.

share|improve this answer
+1 Nice followup to my quick Googling. – mskfisher Jan 31 '12 at 15:11
@mskfisher: I certainly didn't intend for this answer to overtake yours.. It was supposed to be an addendum! Sorry ;( – Lightness Races in Orbit Jan 31 '12 at 15:19

That symbol is the Windows representation of NaN.

share|improve this answer
2  
The original question asked about -1.#INF and, after I answered, was edited to -1.$e+000, which is not mentioned in the article I linked. I'm not sure they are the same. – mskfisher Jan 31 '12 at 14:51
1  
The edit history doesn't confirm that, but somehow I believe it's true. – Daniel Fischer Jan 31 '12 at 15:03
@Daniel: It might have been edited within the five-minute grace period. – Lightness Races in Orbit Jan 31 '12 at 15:05
The edit history doesn't show edits made within the first 5 minutes: meta.stackoverflow.com/questions/44174/… – mskfisher Jan 31 '12 at 15:06
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.