Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Both 1/10 and 16/10 are periodic numbers in binary, just like 1/3 is in decimal. It would take an infinite amount of memory to store 0.1 and 1.6 as floats. Some rounding error occurs.

$ perl -e' printf "%.20f\n", 1.6;' 1.60000000000000008882
And to see what's happening for you:
$ perl -e' for ($i=1.1;$i<=1.6;$i+=.1) { printf "%.20f\n", $i; } printf "\n%.20f\n", $i; ' 1.10000000000000008882 1.20000000000000017764 1.30000000000000026645 1.40000000000000035527 1.50000000000000044409 1.60000000000000053291

One solution is to use integers for the counter, and generate the floats from them

$ perl -le'for my $i (1..6) { print 1+$i/10 }' 1.1 1.2 1.3 1.4 1.5 1.6

It gives precise checks for the loop, and there's no accumulation of error for the result.


In reply to Re: Floating Point Looping In Perl by ikegami
in thread Floating Point Looping In Perl by kiruthika.bkite

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (5)
As of 2024-04-25 14:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found