How can I round a decimal number (floating point) to the nearest integer?
e.g.
1.2 = 1
1.7 = 2
|
1
|
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? |
|||
|
|
|
|
If you decide to use printf or sprintf, note that they use the round-to-even method.
|
||
|
|
|
|
You can either use a module like Math::Round:
Or you can do it the crude way:
|
|||
|
|
|
|
google: perl round -> perldoc/perlfaq
|
|||
|
|
|
|
Whilst not disagreeing with the complex answers about half-way marks and so on, for the more common (and possibly trivial) use-case:
|
||
|
|
|
|
cat table | perl -ne '/\d+\s+(\d+)\s+(\S+)/ && print "".int(log($1)/log(2))."\t$2\n";' |
||
|
|