1
vote
5answers
244 views
What is faster on division? doubles / floats / UInt32 / UInt64 ? in C++/C
Hi everyone,
I did some speed testing to figure out what is the fastest, when doing multiplication or division on numbers. I had to really work hard to defeat the optimiser. I got …
0
votes
4answers
84 views
How to properly display a price up to two decimals (cents) including trailing zeros in Java?
There is a good question on rounding decimals in Java here. But I was wondering how can I include the trailing zeros to display prices in my program like: $1.50, $1.00
The simple …
5
votes
7answers
227 views
Why is System.Math and for example MathNet.Numerics based on double?
All the methods in System.Math takes double as parameters and returns parameters. The constants are also of type double. I checked out MathNet.Numerics, and the same seems to be th …
1
vote
6answers
110 views
Unexpected results using istringstream for string to double conversion in C++
I'm currently trying to take a string ("0.1") and convert it to a double using C++ in Xcode on 10.6 with gcc4.2.
I'm using a function I pinched from another question, but when I t …
8
votes
6answers
601 views
Why does Visual Studio 2008 tell me .9 - .8999999999999995 = 0.00000000000000055511151231257827?
When I type this into the Visual Studio 2008 immediate window:
? .9 - .8999999999999995
It gives me this as the answer:
0.00000000000000055511151231257827
The documentation say …
4
votes
6answers
220 views
How deal with the fact that most decimal fractions cannot be accurately represented in binary?
So, we know that fractions such as 0.1, cannot be accurately represented in binary base, which cause precise problems (such as mentioned here: http://stackoverflow.com/questions/14 …
0
votes
5answers
101 views
What is the minimum buffer size for sprintf with %g?
The problem is to statically allocate a buffer large enough to fit a printed double, formatted with %g at maximum precision. This seems like a simple enough task, bu I'm having tr …
1
vote
4answers
208 views
C#: What’s the best way to compare Double and Int?
Hello everybody,
The following code in C# doesn't work:
int iValue = 0;
double dValue = 0.0;
bool isEqual = iValue.Equals(dValue);
So, the question: what's the best way to com …
2
votes
8answers
227 views
Java Double to String conversion without formatting
I have the number 654987. Its an ID in a database. I want to convert it to a string.
The regular Double.ToString(value) makes it into scientific form, 6.54987E5. Something I dont …
-1
votes
4answers
121 views
What is the inclusive range of float and double in Java?
What is the inclusive range of float and double in Java?
Why are you not recommended to use float or double for anything where precision is critical?
0
votes
3answers
211 views
how to CAST a double to int in C
I've got a double... say
double d = 25.342;
How can I get the 25 value? ( If it were -12.46 I'd like to get -13)
Thanks!
Manuel
6
votes
4answers
421 views
Conversion of a decimal to double number in C# results in a difference
Summary of the problem:
For some decimal values, when we convert the type from decimal to double, a small fraction is added to the result.
What makes it worse, is that there can …
0
votes
1answer
39 views
sIFR double titles?
I used the latest sIFR version, and for some reason it shows the title double. I've experienced this problem on 2 pages now.
I uploaded an example here:
http://www.romenov.com/fai …
4
votes
1answer
164 views
Convert a string with a hex representation of an IEEE-754 double into JavaScript numeric variable
Suppose I have a hex number "4072508200000000" and I want the floating point number that it represents (293.03173828125000) in IEEE-754 double format to be put into a JavaScript va …
0
votes
4answers
80 views
What’s the quickest/best way to format a ?double to currency for string output in C#?
When using .ToString("{blah}") it gives an error because it's a ?double not a double... 'bad parameter' etc
Note this does not seem to be working, sometimes I get '5.7':
double i …
