I have a question about doing arithmetic with C++. Say I have something like:
(71/10) - 7.0 and it gives me something like: 0.0999999. How can I get it to give me 0.1.
You have to explain more. What do you mean by "give me 0.1"? Do you just want to output 0.1? Or to use 0.1 in further calculations?
If you're trying to use 0.1 in further calculations, using regular C++ floating point types such as float and double will not work reliably in terms of exact calculations. Either use normalized integers and do calculations, or get a fixed point math library.
You can't with the built in floating point types
Numbers that are a fixed number of places in decimal may be an infinite number in binary, and that's what the computer is working with at the lowest level.
In your case, 0.1 is not representable as a finite length floating point binary number.
"It doesn't matter how beautiful your theory is, it doesn't matter how smart you are. If it doesn't agree with experiment, it's wrong."
Richard P. Feynman
You need to run your code on a PPC or a SPARC Processor, they have much higher floating point accuracy. Intel is notoriously poor when it comes to that, or else use OpenCL and use the graphic card's floating point calculator. None of them will give you perfect results every time, but they're better.
Something I noticed, you do know that 71/10 will give you 7 right? That's an integer division.
or else use OpenCL and use the graphic card's floating point calculator.
All but the newest graphics cards will only support single-precision float calculations. I don't know whether OpenCL tries to do any double-precision emulation on the older cards, but if it does, that will slow it down considerably.
I wasn't recommending it anyway, I don't even think OpenCL has been released yet for anything other than the Mac. I was just saying it's a possibility.
Accuracy with floating point is always very difficult, I had to write a floating point library from the ground up once, Maybe I can find it and post it for you.
I have a question about doing arithmetic with C++. Say I have something like:
(71/10) - 7.0 and it gives me something like: 0.0999999. How can I get it to give me 0.1.
This is a fundamental problem in computing. Not every number in decimal representation has an exact representation in binary (the internal representation used by computers). So the result of a conversion between decimal and binary will (most often) be approximate only. A conversion error is introduced.
I wouldn't say that's the only solution. You could use a fixed-point representation in some cases. This is typically what is done with money----just work in terms of cents.
I wouldn't say that's the only solution. You could use a fixed-point representation in some cases. This is typically what is done with money----just work in terms of cents.
Rounding is the only way to handle the conversion error problem associated with floating point representations. Not using floating points isn't a solution to this particular problem.
a) If you round off and use in further calculations, then you could do this:
I got the below from the internet, round is a function defined in cmath, it rounds off to an integer but you can round off to a specific precision by dividing again my a multiple of 10 as shown below:
Code:
#include <iostream>
#include <cmath>
using std :: cout;
int main()
{
double x, y;
x=3.1415927;
y = round(x*10000)/10000.0;
cout << "y = " << y << '\n';
return(0);
}
b) If you just want to display the number to a certain precision but still needed to retain the number for calculations, then you could use the following functions on cout:
Code:
cout.precision(2); //set your own precision, this is only formatting the output
cout.setf(ios :: fixed); //Setting to fixed point notation
you could even set it to scientific notations, you can set and unset flags, there is a whole bunch of options.
I got the below from the internet, round is a function defined in cmath,
There is no such function as round() in <cmath>.
Secondly, no matter how hard a programmer will try, due to the nature of floating point numbers, no round() function can be written that will work 100% of the time that uses traditional doubles and floats.
If you have ever worked in the financial industry where exact calculations are required, usage of float and doubles are prohibited in the programs written for these institutions. Instead, special libraries that use fixed point, or even a different computer language (i.e. COBOL) are used to ensure that calculations come up with no round off error. I used to work in the insurance industry, and in no way could doubles be used.
If rounding were possible by just using float and double, there would be no need for such libraries and differing technologies, and such a function would exist in the C++ language library. It doesn't exist.
Doing a C cast on any of the primitives to and integer will do an implicit round.
That will do a truncation, which is a bit different from rounding. For instance, 1.75 will become 1 rather than 2 as you'd expect. For rounding, you'd need to do
Bookmarks