Here's a little toy to examine just what's going on here. Try it out and play with the ranges.
#!/usr/bin/perl -w use strict; require Math::BigFloat; my $sig = $ARGV[0] || 2; my $ini = $ARGV[1] || 0; my $end = $ARGV[2] || 1; my $inc = $ARGV[3] || 0.0001; test_methods($sig, $ini, $end, $inc); sub test_methods { my ($sig, $ini, $end, $inc) = @_; my $count = 0; my %result = (); print "For $ini to $end, incrementing by $inc, with $sig significa +nt digit". ($sig==1 ? '' : 's') ."\n"; for (my $num = $ini;$num<$end;$num += $inc) { $count++; $result{'real'} += $num; $result{'ffround'} += Math::BigFloat->new($num)->ffround( -$si +g ); $result{'sprintf'} += sprintf "%0.${sig}f", $num; printf "%-20s || %-10s || %-20s\r", ($result{'real'}/$count), +($result{'ffround'}/$count), ($result{'sprintf'}/$count); } print ' 'x58 . "\rOver $count iterations:\n"; print " Method | Sum | Average\n"; for (qw[real ffround sprintf]) { printf "%9s | %-20s| %-20s\n", $_, $result{$_}, ($result{$_}/$ +count); } return \%result; }

"One is enough. If you are acquainted with the principle, what do you care for the myriad instances and applications?"
- Henry David Thoreau, Walden


In reply to Re: Proper monetary rounding by blogical
in thread Proper monetary rounding by blogical

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.