Tagged Questions

1
vote
11answers
321 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 …
2
votes
2answers
172 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
6answers
186 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 …
1
vote
2answers
51 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. …
4
votes
10answers
770 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
3answers
472 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
8answers
358 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
3answers
378 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 …
2
votes
2answers
399 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? …