I have the following code :
my $m=0;
my $e =0 ;
my $g=0;
my $x= sprintf( "%0.1f", (0.6*$m+ 0.7 * $e-1.5)*$g);
print $x;
when I run the script the result is -0.0 and not 0.0 could someone explain why and how i can change it to be 0.0.
|
I have the following code :
when I run the script the result is -0.0 and not 0.0 could someone explain why and how i can change it to be 0.0. |
||||
|
First, this has nothing to do with Perl. It's your processor that's returning -0.0. You'll see this same behaviour in other languages. You ask why, presumably asking why this is useful. Honestly, I don't know. Some scientists and engineers probably take advantage of it. +0.0 would indicate "zero or something very slightly larger on the positive side". -0.0 would indicate "zero or something very slightly larger on the negative side." You also ask how to get rid of the sign. Negative zero is false, so |
|||
|
|
|
You've run into something very strange. My first thought was that you were seeing some very small negative number that Here's a simpler program that exhibits the same issue:
and the output:
I can avoid the negative zero display by adding these lines before the
but that's ugly. (Incidentally, I get the same results with the "bleading-edge" version of Perl 5.15.2 from about a month ago.) A similar C program prints EDIT: Further experiment shows that multiplying a negative integral value by 0.0 yields 0.0, but multiplying a negative non-integral value by 0.0 yields -0.0. I've submitted a Perl bug report. |
||||
|
|
|
Nothing to see here, move along...
http://download.oracle.com/docs/cd/E19957-01/806-3568/ncg_goldberg.html |
|||||
|
|
Data::Float has some useful information as well as routines to check if a floating point value is zero. The short answer is, when dealing with floating point, you cannot assume algebraic identities will be preserved.
|
||||
|
|
|
This doesn't address the post directly, but it does address the "odd" behavior that exists in perl. (I believe) This issue is caused because perl is converting the numbers to integers and then using INTEGER/ALU math instead of FP/FPU math. However, there is no -0 integer [in two's complement] -- only an -0 integral which is really a floating point value -- so the floating point value -0.0 is converted to the integer 0 before the multiplication :-) Here is my "demonstration":
And my "result/reasoning" is:
Happy musings. Python does not exhibit these quirks because it has strongly-typed numbers: it will not convert an integral floating point value to an integer prior to a math operation. (Python will still perform standard type-widening.) Try divide by 0.0 (FP, not INTEGER math!) in perl ;-) |
|||||
|
|
Very strange. I note that the problem disappears if you replace
All I can think of is to treat -0.0 as a special case:
(EDIT: This was a dumb suggestion, since I also checked Python's behaviour, which consistently retains the sign, which suggests that the negative sign is not really a bug in Perl, just a little strange (though I'd say that treating integers and non-integers differently is a bug):
|
||||
|
|
Answer: use the absolute value function, Code
Perl 5.10.1
Perl 5.12.1
Perl 6 (rakudo-2010.08)
IEEE 754 standard
|
|||
|
|
perls. See also perlmonks.org/?node_id=656432 – Sinan Ünür Oct 13 '11 at 2:33