How can I round a decimal number (floating point) to the nearest integer?
e.g.
1.2 = 1
1.7 = 2
|
How can I round a decimal number (floating point) to the nearest integer? e.g.
|
||||
|
|
|
Output of Does Perl have a round() function? What about ceil() and floor()? Trig functions? |
||||
|
|
|
Whilst not disagreeing with the complex answers about half-way marks and so on, for the more common (and possibly trivial) use-case:
UPDATE If it's possible for your
With this calculation -1.4 is rounded to -1, and -1.6 to -2. |
|||||||||||||||||||
|
|
You can either use a module like Math::Round:
Or you can do it the crude way:
|
||||
|
|
|
If you decide to use printf or sprintf, note that they use the Round half to even method.
|
||||
|
|
google: perl round -> perldoc/perlfaq
|
||||
|
|
|
Negative numbers can add some quirks that people need to be aware of. printf style approaches give us correct numbers, but can result in some odd displays. The We have discovered that this method (in my opinion, stupidly) puts in a - sign whether or not it should or should't For example -0.01 rounded to one decimal place returns a -0.0, rather than just 0. if you are going to do the printf style approach, and you know you want no decimal, use %d and not %f (when you need decimals, its when the display gets wonky). While its correct and for math no big deal, for display it just looks weird showing soemthing like "-0.0". for the int method, negative numbers can change what you want as a result (though there are some arguments that can be made they are correct). the int + 0.5 causes real issues with -negative numbers, unless you want it to work that way, but I imagine most people dont. -0.9 should probably round to -1 not 0. If you know that you want negative to be a ceil rather than a floor then you can do it in one-liner, otherwise, you might want to use the int method with a minor modification: (this obviously only works to get back whole numbers:
|
||||
|
|
|
cat table | perl -ne '/\d+\s+(\d+)\s+(\S+)/ && print "".int(log($1)/log(2))."\t$2\n";' |
|||
|
|
|
Following is a sample of 5 different ways to summate values The first is a naive way to perform the summation (and fails). The 2nd attempts to use
Note that |
|||
|
|
|
You don't need any external module.
I may be missing your point, but I thought this was much cleaner way to do the same job. What this does is to walk through every positive number in the element, print the number and rounded integer in the format you mentioned. The code concatenates respective rounded positive integer only based on the decimals. int($_) basically round-down the number so ($-int($)) captures the decimals. If the decimals are (by definition) strictly less than 0.5, round-down the number. If not, round-up by adding 1. |
|||
|
|
My solution for sprintf
|
||||
|
|
|
How about just using int() like this: $my rounded = int($float + 0.5); ? |
|||||
|
|
How about just using: my rounded = int($float + 0.5); ?? |
|||||
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.