Hello,
I have just spent better part of the day trying to work this out. It looks like a bug, but that would be quite interesting in itself.
Try this:
perl -e '$a = "-4.84900000E+001"; $a += 0; $b = -48.49; print "EQ\n" i
+f ($a == $b); print "$a\n$b\n";'
it gives:
EQ
-48.49
-48.49
All good. Now, try this:
perl -e '$a = "-4.84800000E+001"; $a += 0; $b = -48.48; print "EQ\n" i
+f ($a == $b); print "$a\n$b\n";'
gives:
-48.48
-48.48
?
In my main code I am getting scientific notation values as strings, I add 0 and compare them as numbers. It all works, but not for -4.84800000E+001 (and 4.84800000E+001 too). Why? I tried some combinations like 37.37 and so on.
perl -v
This is perl 5, version 22, subversion 2 (v5.22.2) built for x86_64-li
+nux-thread-multi
(with 33 registered patches, see perl -V for more detail)
I really do hope this is something silly on my part.
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.