Is there a way to set Perl script's floating point precision (to 3 digits), without having to change it specifically for every variable?
Something similar to TCL's:
global tcl_precision
set tcl_precision 3
|
Is there a way to set Perl script's floating point precision (to 3 digits), without having to change it specifically for every variable? Something similar to TCL's:
|
|||||
|
|
There is no way to globally change this If it is just for display purposes then use For mathematical purposes |
|||||||||||
|
|
How about
or with
then in both cases:
/I3az/ |
||||
|
|
|
I wouldn't recommend to use sprintf("%.3f", $value). Please look at the following example: (6.02*1.25 = 7.525)
|
|||
|
|
|
Treat result as string and use substr. like this:
If you want to do rounding, do it as string to, just get next char and decide. |
|||
|
|
|
Or you could use the following to truncate whatever comes after the third digit after the decimal point:
|
|||
|
|