2
votes
10answers
142 views
Precision nightmare in Java and MSSQL
Hi everyone,
I've been struggling with precision nightmare in Java and MSSQL up to the point when I don't know anymore. Personally, I understand the issue and the underlying reaso …
3
votes
2answers
37 views
Limit the precision on std::cout of default values in boost::options_description
When I construct a boost::options_description instance like
options.add_options()
("double_val", value(&config.my_double)->default_value(0.2), "it's a double");
and lat …
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 …
0
votes
7answers
122 views
Suggest a good method for having a number with high precision in C#
Hi every one!
I am programming on a project which I should store the key of the user to the initial configuration of a machine, I want to write it in C#.
I have an initial confi …
6
votes
2answers
90 views
MS Access Rounding Precision With Group By
Why doesn't the average of the score of an employee of each month, when summed, equal the average of the employees score (ever)?
Average
SELECT Avg(r.score) AS rawScore
FROM (ET …
1
vote
1answer
136 views
Haskell: Force floats to have two decimals
Using the following code snippet:
(fromIntegral 100)/10.00
Using the Haskell '98 standard prelude, how do I represent the result with two decimals?
Thanks.
5
votes
4answers
118 views
What is the maximum precision of the Timer in .NET?
I'm wondering what the precision of the Timer class is in System.Timers, because it's a double (which would seem to indicate that you can have fractions of milliseconds). What is i …
0
votes
6answers
132 views
Percentage with variable precision
I would like to display a percentage with three decimal places unless it's greater than 99%. Then, I'd like to display the number with all the available nines plus 3 non-nine chara …
3
votes
7answers
242 views
Better approximation of e with Java
I would like to approximate the value of e to any desired precision. What is the best way to do this? The most I've been able to get is e = 2.7182818284590455. Any examples on a …
2
votes
5answers
175 views
Why is there a difference between the same value stored as a float and a double in Java?
I expected the following code to produce: "Both are equal", but I got "Both are NOT equal":
float a=1.3f;
double b=1.3;
if(a==b)
{
System.out.println("Both are equal");
}
else{
…
0
votes
2answers
101 views
A better way to construct a datetime with higher precision than milliseconds
I have just gone through an unexpectedly convoluted process to define datetimes.
The underlying data has a better precision than milliseconds.
I ended up constructing an intermed …
2
votes
6answers
292 views
Wasn’t the Double Type precision of 15 digits in C#?
I was testing this code from Brainteasers:
double d1 = 1.000001;
double d2 = 0.000001;
Console.WriteLine((d1 - d2) == 1.0);
And the result is "False". …
0
votes
4answers
70 views
C versus wcalc: a precision problem?
Hello,
Consider the following C code:
int c=((0xa3>>6)&0x1f)|0xc0;
printf("%d\n",c);
It correctly prints out 194 (0xc2). If I write the same thing in wcalc, the r …
5
votes
8answers
226 views
gcc precision bug?
I can only assume this is a bug. The first assert passes while the second fails:
double sum_1 = 4.0 + 6.3;
assert(sum_1 == 4.0 + 6.3);
double t1 = 4.0, t2 = 6.3;
double sum_2 …
1
vote
12answers
314 views
C# which is the best data type for precision 3?
I want to store a number with the following 0.000 which is the best data type to use.
A double?
Also I guess an INT is just out of the question?
