Tagged Questions
9
votes
4answers
526 views
Rounding differences on Windows vs Unix based system in sprintf
I have problem on UNIX based systems sprintf does not round up properly value.
For example
double tmp = 88888888888885.875
char out[512];
Thats 88,888,888,888,885.875 just to be easier on eyes.
I ...
6
votes
2answers
137 views
addition instead of subtraction in Kahan algorithm
This is the Kahan summation algorithm from Wikipedia:
function KahanSum(input)
var sum = 0.0
var c = 0.0
for i = 1 to input.length do
y = input[i] - c // why subtraction?
...
3
votes
4answers
335 views
Detecting precision loss when converting from double to float
I am writing a piece of code in which i have to convert from double to float values. I am using boost::numeric_cast to do this conversion which will alert me of any overflow/underflow. However i am ...
2
votes
2answers
152 views
Preventing Rounding Errors
I was just reading about rounding errors in C++. So, if I'm making a math intense program (or any important calculations) should I just drop floats all together and use only doubles or is there an ...
2
votes
5answers
1k views
.NET rounding error in ToString(“f2”)
Hello I have this code in C#:
float n = 2.99499989f;
MessageBox.Show("n = " + n.ToString("f2", CultureInfo.InvariantCulture));
And this code in C++:
float n = 2.99499989f;
printf("n = %.2f", n);
...
1
vote
4answers
185 views
Error subtracting floating point numbers when passing through 0.0
The following program:
#include <stdio.h>
int main()
{
double val = 1.0;
int i;
for (i = 0; i < 10; i++)
{
val -= 0.2;
printf("%g %s\n", val, (val == 0.0 ? ...
1
vote
11answers
1k views
Representing probability in C++
I'm trying to represent a simple set of 3 probabilities in C++. For example:
a = 0.1
b = 0.2
c = 0.7
(As far as I know probabilities must add up to 1)
My problem is that when I try to ...
0
votes
3answers
93 views
How to control double precision computing to avoid rounding errors in C++ linux x86_64?
In a C++ code on linux x86_64, I need to double precision computing (+ or -).
26.100000000000001 - 26 + 0.10000000000000001
I got:
0.20000000000000143
I want to get 0.2.
here, the display ...
0
votes
4answers
154 views
Rounding error in C++ [closed]
Possible Duplicate:
Why can't decimal numbers be represented exactly in binary?
Language c++
I'm declaring an array and i save numbers (type double) in it. Then i start comparing the ...