|
|
| Welcome to the Monastery | |
| PerlMonks |
Re: IEEE-754 calculation - best way?by BrowserUk (Pope) |
| on Jan 30, 2013 at 22:40 UTC ( #1016169=note: print w/ replies, xml ) | Need Help?? |
|
if I multiply 0.29 with 50, I get 14.5: Only with this line: my $num4 = sprintf ("%.64f", $num7); I get the exact result in "double" (14.999...). The only difference between:
And:
is what gets printed out; not what is calculated and stored internally. All floating point calculations are done internally using IEEE754 semantics; if you want to see the full internal results use printf to display the results. As for your perceived difference when gratuitously using eval:
The first thing to note is that the first two evals make no difference whatsoever:
And the reason for that difference is because (in this form) eval expects a string. So the result of the multiplication (eval( 0.29 ) * eval( 50 )) is converted to a string -- using the same rules as print -- before being passed to the final eval. You get identically different results if you do:
Because the internal (IEEE754) representation has been lost by the conversion to a string. Bottom line: Stop worrying about it. Do your floating point math in the usual way (no eval's; no stringifications), secure in the full IEEE754 semantics will be used internally; and then use printf/sprintf (*only*) when you need to display them. With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||