Tagged Questions
6
votes
2answers
136 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?
...
6
votes
10answers
3k views
How is floating point stored? When does it matter?
In follow up to this question, it appears that some numbers cannot be represented by floating point at all, and instead are approximated.
How are floating point numbers stored?
Is there a common ...
3
votes
4answers
334 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
143 views
Is there a way to truncate scientific notation numbers in Javascript?
As you all know since it is one of the most asked topic on SO, I am having problems with rounding errors (it isn't actually errors, I am well aware).
Instead of explaining my point, I'll give an ...
2
votes
8answers
612 views
How to handle multiplication of numbers close to 1
I have a bunch of floating point numbers (Java doubles), most of which are very close to 1, and I need to multiply them together as part of a larger calculation. I need to do this a lot.
The problem ...
1
vote
4answers
182 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
3answers
240 views
Minimizing the effect of rounding errors caused by repeated operations effectively
I just recently came across the Kahan (or compensated) summation algorithm for minimizing roundoff, and I'd like to know if there are equivalent algorithms for division and/or multiplication, as well ...
0
votes
3answers
105 views
Ruby Float Round Error Bug?
I am getting the following rounding error when I try to Unit test the class below:
class TypeTotal
attr_reader :cr_amount, :dr_amount,
:cr_count, :dr_count
def ...
0
votes
1answer
101 views
Reduce the effect of float number (rounding) error
We are implementing some geometric algorithms but found the effect of float number calculation error is big. Is there any guide lines to reduce this kind of effects?
The algorithms contains many ...
0
votes
1answer
103 views
Avoiding rounding in convert.tosingle method
consider ,
object a =1.123456;
float f = convert.ToSingle(a);
But when I print the value of f , I get 1.123455.
It is getting rounded off.
Also the problem is I cant change the data type of float ...
0
votes
2answers
393 views
Why does 99.99 / 100 = 0.9998999999999999 [closed]
Possible Duplicate:
Dealing with accuracy problems in floating-point numbers
Whereas 99.99 * 0.01 = 0.99
Clearly this is the age old floating point rounding issue, however the rounding ...