Hey, all. What'd I goof up here?
use bignum;
$foo = 12345.6789;
$bar = $foo->copy()->bfround(0);
$baz = $foo - $bar;
print "what's wrong here? $baz\n";
$byhand = 12345.6789 - 12345;
print "as expected $byhand\n";
... which does this:
what's wrong here? 0
as expected 0.6789
So the subtraction is getting zero, where I expected roughly 0.6789 also. And yes, I get the same thing if i use
$baz = $foo->bsub($bar).
Any hints appreciated.
Thanks!
Update - Thanks for the welcome; I've been lurking and annonning for years so it was prolly time. It was indeed a contamination of precision. When doing the bfround(0) you can Dumper the result and see it picked up a p=0 member, which got carried along after that. The bfround(0)->bfround(-5) solution works but I need to rtfm a couple more times to get my head around it.
The problem I was trying to solve was merely, "what's the distance from this float to the nearest integer, wherever that is"
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.