Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
524 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
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
3answers
403 views

PHP rounding error

I'm using PHP 5.2.13 on my linux server. I'm getting weird error when rounding numbers. This is my test case: <?php echo " " . round(1.505, 2) . "\n"; echo " " . round(11.505, 2) . ...
6
votes
4answers
1k views

Rounding Standards - Financial Calculations

I am curious about the existence of any "rounding" standards" when it comes to the calculation of financial data. My initial thoughts are to perform rounding only when the data is being presented to ...
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 ...
5
votes
4answers
2k views

Specifying DPI of a GDI Device Context

I have an application that generates metafiles (EMFs). It uses the reference device (aka the screen) to render these metafiles, so the DPI of the metafile changes depending on what machine the code is ...
3
votes
3answers
197 views

Finite difference in Haskell, or how to disable potential optimizations

I'd like to implement the following naive (first order) finite differencing function: finite_difference :: Fractional a => a -> (a -> a) -> a -> a finite_difference h f x = ((f $ x + ...
3
votes
3answers
488 views

sum divided values problem (dealing with rounding error)

I've a product that costs 4€ and i need to divide this money for 3 departments. On the second column, i need to get the number of rows for this product and divide for the number of departments. My ...
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 ...
3
votes
1answer
111 views

Estimating error on calculations using decimals

We're currently using System.Decimals to represent numbers in a .NET application we're developing. I know that decimals are design to minimize errors due to rounding, but I also know that certain ...
3
votes
4answers
604 views

What class to use for money representation?

What class should I use for representation of money to avoid most rounding errors? Should I use Decimal, or a simple built-in number? Is there any existing Money class with support for currency ...
3
votes
3answers
2k views

php intval() and floor() return value that is too low?

Because the float data type in PHP is inaccurate, and a FLOAT in MySQL takes up more space than an INT (and is inaccurate), I always store prices as INTs, multipling by 100 before storing to ensure we ...
2
votes
4answers
55 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 ...
2
votes
1answer
82 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 ...
2
votes
2answers
150 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
146 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 ...
2
votes
4answers
1k 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; ...
2
votes
1answer
104 views

RoundOffTest() seems to round UP and DOWN

void RoundOffTest(double number) { // What value would you pass to RoundOffTest() in order to get this output: // BEFORE number=1.785000 round=178.000000 (round down) // AFTER ...
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
2answers
121 views

FP precision error on converting XML -> Table & processing it

In SQL Server 2008, I have the value "0.01" in an XML attribute. Using OPENXML, I shred the XML into a temp table. If the applicable column is of type real (single precision), it comes out as 0.01 in ...
2
votes
2answers
318 views

Why is this Sql Server CAST(..) rounding a Decimal to a VarChar?

I'm trying convert some decimals to varchar, but they are getting rounded. Can someone tell me why? declare @UpperLeftLatitude DECIMAL, @UpperLeftLongitude DECIMAL, @BottomRightLatitude ...
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); ...
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 ...
2
votes
2answers
1k views

How do I cope with rounding errors on doubles in vb.net?

I'm trying to balance a set of currency values using vb.net. The totals for both these values is cast as a double. I'm getting rounding errors in some situations. What's the best way to avoid this? ...
1
vote
1answer
279 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 ...
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 ...
1
vote
2answers
175 views

SQL Rounding Problems in 2005 and 2000

I have a value in the database which is 2.700000002. When I run a query in Management studio in SQL SERVER 2005 I get 2.7. But when I run in SQL SERVER 2000 query analyzer it comes 2.700000002. ...
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 ...
1
vote
1answer
172 views

Difference in rounding in sql and clr

I have searched and can not find the answer. I double checked the data types between SQL and CLR and I appear to have that correct. But I am getting a different result between using CLR and SQL. ...
1
vote
3answers
1k views

How to find mantissa length on a particular machine?

I'm wanting to find the number of mantissa digits and the unit round-off on a particular computer. I have an understanding of what these are, just no idea how to find them - though I understand they ...
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
2answers
70 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') } ...
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
5answers
66 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 ...
0
votes
0answers
48 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
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
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 ...
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 ...