rounding errors are when the number that is stored is not exactly the number expected

learn more… | top users | synonyms

0
votes
0answers
6 views

Quaternion instant numeric drift

I'm propagating a quaternion with little changes created from user mouse input where I create a quaternion for the added rotation in the X-axis and one for the Y-axis and combine these rotations into ...
0
votes
1answer
17 views

Rounding to 2 decimal places using VBA

I am writing a program that sums information I enter by month (column) and by person (row), but I am having trouble with a rounding issue. I have seen other places that it is possible to name a ...
3
votes
1answer
31 views

PHP rounding issue

I am getting a rounding issues, I have a database of 3 charities with different amounts.. then in the front I have the 3 charities displaying there percentage based on the amount assigned to them and ...
11
votes
1answer
204 views

Is there a datatype “Decimal” in R?

I read data stored in the format DECIMAL from a MySQL-Table. I want to do calculations on those numbers within R. I used to cast them to a numeri represaentation using as.numeric(), but the ...
-1
votes
5answers
117 views

Rounding numbers in C# producing too many decimal places

I'm trying to round a float down to 6 decimal places. Converting from double to float seems to pretty much do this, however in the process I've noticed some weirdness. Whatever I do I seem to end up ...
3
votes
1answer
53 views

Summary function Rounding Error in r?

I have a 16968 row data frame (reasons for exactitude will be made clear below). I am checking to see whether a running variable (data$Ob) is actually counting every row in sequential order (first row ...
2
votes
2answers
151 views

c++ Floating point subtraction error and absolute values

The way I understand it is: when subtracting two double numbers with double precision in c++ they are first transformed to a significand starting with one times 2 to the power of the exponent. Then ...
1
vote
1answer
28 views

Rounding up a number not always works as expected

I want to charge my users 1 credit for each hour or fraction they use a service. To calculate the cost I'm using the following code, but in some cases, for example when the starting and ending dates ...
6
votes
4answers
98 views

How do deal with infinitely repeating numbers as decimals?

When division results in an infinitely repeating number, the number obviously gets truncated to fit into the size of the decimal. So something like 1/3 becomes something like 0.3333333333333333333. If ...
0
votes
0answers
40 views

How do I get the coordinates for the edges of a hexagon without rounding errors?

I need to generate 6 coordinates(x,y) in JavaScript, representing the edges of a hexagon, but I need the results to be free of "rounding errors", how do I accomplish this? When I have rounding errors ...
1
vote
2answers
49 views

How can I avoid int-floor bias while mouse-targeting at small speeds?

I have a simple algorithm for an object to follow the mouse pointer at a given max speed in Java. The crux of the algorithm is this: // Set up displacement trackers for later. // (These are used in ...
1
vote
1answer
139 views

NSJSONSerialization.JSONObjectWithData float conversion/rounding error?

My simple RubyMotion code: data = DataParser.parse(url) error_ptr = Pointer.new(:object) json = NSJSONSerialization.JSONObjectWithData(data, options: 0, error: error_ptr) The url is a weather API ...
0
votes
1answer
45 views

Ruby - Sqrt on a very large Integer cause Rounding issues

I'm trying to solve a Fibonacci problem and am stumbling into rounding issues. If i = 8670007398507948658051921 then fib1 = 19386725908489880000000000.0. My code is below - thanks for any help. def ...
2
votes
2answers
126 views

Android sqllite rounding error

We have problem in our Android application with rounding numbers. In calculation made in Java we use BigDecimal and this helps, but we have problem with SQLite, for ex. SELECT ROUND(150.075 * 100) / ...
1
vote
1answer
126 views

How to calculate numbers to arbitrarily high precision?

I wrote a simple fortran program to compute Gauss's constant : program main implicit none integer :: i, nit double precision :: u0, v0, ut, vt nit=60 u0=1.d0 v0=sqrt(2.d0) print *,1.d0/u0,1.d0/v0 ...
1
vote
1answer
142 views

Decimal Truncation/Rounding difference in console and though JDBC

I have an issue while inserting a double value into a database table with some decimal precision. I am using MS SQL Server version 10.0.4000 Below is a sample table with decimal column having 4 ...
0
votes
1answer
71 views

Rounding error in Ruby Time

EDIT: it appears in timev.h that sub seconds are represented as integers instead of floats? Even if I know the rounding errors related to the implementation of IEEE 754 floating values, I'm very ...
1
vote
1answer
38 views

Odd output behavior with Ruby on OS X

I have a simple program written in Ruby. The code is: #!/usr/bin/ruby # odd behavior here j = 1.11 while j < 2 print "iteration #{j}\n" j += 0.01 end I am running it on a MacBook Air ...
0
votes
2answers
61 views

Having trouble with a Ruby rounding error

I can't for the life of me figure out why my: generate_receipt method is returning 54.9 for my "imported dinner plates item" when it should equal 54.65. I wrote RSpec tests to confirm that the array ...
-1
votes
1answer
112 views

Rounding error of std::cbrt?

I wonder if the following should be reported as a bug in gcc implementation of standard library. For all unsigned integers i, if we compare int(std::sqrt(i)) to the actual square root of the integer, ...
0
votes
1answer
128 views

Add numbers from variables in Google Apps Script going strange

When adding numbers which I pull off a CSV, this is the logfile I am getting: var costs = Number(csvData[i][9].replace(",",".")); // need to replace , with . and ...
0
votes
2answers
67 views

Rounding error in c integration program

im making a program that finds the integral of a function for different values of a power n, and constant a. my program seems to be working correctly but im getting a small rounding error in my ...
2
votes
0answers
113 views

Rounding errors with svg linear gradient in chrome? How to work around?

I'm seeing some issues recently with Chrome to render svg linear gradient. Have a look at this svg below: <!DOCTYPE html> <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> ...
0
votes
1answer
62 views

Rails 3 Float Rounding Error

Running ruby 1.8.7. (1.005 * 100).round result: 100 (1.006 * 100).round result: 101 100.5.round result: 101 (1.005 * 100) result: 100.5 What is going on here? Can someone try this in the ...
2
votes
1answer
283 views

Rotating images causes distortion on Qt

I'm facing some problems rotating an image in Qt. Each time I rotate my image with QPainter it becomes more and more distorted. This is the initial image: After some iterations it becomes: ...
1
vote
3answers
91 views

Inaccurate calculations (rounding?) - PHP

Edit: Problem solved I'm trying to port over a popular rating algorithm which analyses some statistics from Counter-Strike matches into a PHP script. The outline of the system can be found in the ...
0
votes
3answers
424 views

Math.round() not working properly

This is my program. very simply put, it is supposed to round an entered number to a given amount of decimals. I.e. 4.245 rounded to 2 decimals would give 4.25. However, I always only get it rounded to ...
0
votes
1answer
407 views

Accounting format displays $0.00 sometimes and $ - others

I have a pivot table in Excel and the sum of the items should equal zero. Instead I am getting a number very, very close to zero (-3.63797880709171E-12). As @Tim Williams pointed out in his comment ...
52
votes
3answers
2k views

BigDecimal multiply by zero

I am performing a simple multiplication with BigDecimal and I have found some strange behaviour when multiplying by zero (multiplying by zero is correct in this use-case). Basic maths tells me that ...
6
votes
2answers
170 views

Correct sums with dividing sums, countering rounding errors

Web app coded in PHP with a MySQL database. I have a system which calculates different costs for a number of people when splitting a cost. For example Person A buys something for 10 and Persons B, C, ...
1
vote
3answers
313 views

R issue with rounding milliseconds

Given the following issue with rounding milliseconds under R. How do I get around it so that the times are correct? > options(digits.secs=3) > as.POSIXlt("13:29:56.061", format='%H:%M:%OS', ...
1
vote
1answer
330 views

Double rounding error in MongoDB with Group()

I'm new to MongoDB and trying out some fundamentals, but this astonished me. I'm guessing I misunderstand some core concept, but can anyone tell me what's going on here? Using the official MongoDB C# ...
4
votes
3answers
611 views

Rounding Inaccuracies When Combining Areas in Java?

I'm working with Areas in Java. My test program draws three random triangles and combines them to form one or more polygons. After the Areas are .add()ed together, I use PathIterator to trace the ...
1
vote
5answers
239 views

Python Decimals

I expect 0.5 to round up to 1. Can anybody explain why it rounds down to 0 instead? >>> from decimal import * >>> getcontext().prec = 0 >>> +Decimal(0.5) Decimal('0')
2
votes
0answers
376 views

Jpeg Image Compression: Quantization issue

While encoding a raw image to a jpeg image, a 8x8 data unit is level shifted, transformed using a 2-D DCT, quantized and Huffman encoded. I have first performed the Row DCT and then the column DCT ...
2
votes
4answers
343 views

Dealing with hours with no minutes when rounding DateTime to the 30 minutes

I'm trying to emulate the way Google Calendar and Outlook handle time selection where all time entries are 30 minutes apart. I almost have every thing working with functional tests except for one ...
0
votes
3answers
706 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 ...
7
votes
2answers
404 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? ...
0
votes
2answers
178 views

Error in BigDecimal calculation

Consider the following spec: require 'bigdecimal' def total_percent(amounts) percent_changes = amounts.each_cons(2).map { |a| (a[1] - a[0]) / a[0] * BigDecimal.new('100.0') } ...
2
votes
1answer
95 views

R & C versions of function give differing results - rounding or operator error?

I have a block of R code that I rewrote in C, and the two versions provide different results. My belief is that this is due to rounding issues at the R level, i.e. multiple math operations are being ...
0
votes
3answers
341 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
5answers
102 views

Simple equation fails unit test

I have method that takes 2 integers as arguments and returns: public int method(int a, int b){ return Math.round((Math.abs(a-b)/3) - (Math.min(a,b)-1500)/10) } I have created unit test, which ...
3
votes
1answer
3k views

C# Rounding MidpointRounding.ToEven vs MidpointRounding.AwayFromZero

In C# Is there any difference in the accuracy of the two decimal rounding strategies MidpointRounding.ToEven and MidpointRounding.AwayFromZero? I mean do both ensure an even distribution amongst the ...
2
votes
2answers
892 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
3answers
373 views

Preventing R From Rounding

How do I prevent R from rounding? For example, > a<-893893084082902 > a [1] 8.93893e+14 I am losing a lot of information there. I have tried signif() and it doesn't seem to do what I ...
0
votes
0answers
95 views

Why do you need float/double? [closed]

I was watching http://www.joelonsoftware.com/items/2011/06/27.html and laughed at john skeet joke about 0.3 not being 0.3. I personally never had problems with floats/decimals/doubles but then i ...
0
votes
1answer
352 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
4answers
385 views

Rounding error in C++ [duplicate]

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 ...
5
votes
4answers
4k views

Unable to insert decimal to sql server table through c# code

I'm not able to insert decimal values into Sql Server table. What i'm trying to do is self explanatory through these lines of code: long fileSizeInBytes = ComponentUploadControl.FileContent.Length; ...
1
vote
4answers
601 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 2