Hi gurus.
I'm using OLE with ActiveState perl5.003 (it's not my choosing) to read from an Excel spreadsheet. In particular, I read two largely negative float values (ie -3809482.42154223) and I am subtracting them.
#x & y are both -3809482.42154223
my $diff = abs( $x - $y );
to my shock & dismay, $diff ended up with the value
'-4.65661287307739e-010'. I ran the same code in a
test perl script to maintain my level of sanity.
my $x='-3809482.42154223';
my $y='-3809482.42154223';
my $diff = abs( $x - $y );
print $diff, "\n";
and lo and behold, $diff ended up to be zero.
What is going on? Any clues?
thanks,
Michael
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.