Rounding off a decimal


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Rounding off a decimal
# 8  
Old 01-16-2015
Hi Don Cragun
I added to my previous post.
I think it's a better way to go.

Last edited by ongoto; 01-17-2015 at 03:33 AM..
# 9  
Old 01-16-2015
Hi ongoto,
Did you even look at the problem statement for this thread: "How to round off a decimal number to higher whole number using ceil command in unix?"

Using printf is great if you want to round to the nearest integer. It is not even close to providing something that calculates the ceiling of a decimal number.
# 10  
Old 01-16-2015
@ Don Cragun

I was thinking of a general solution to rounding, not strictly rounding up. My bad.

Setting precision to zero seems to do what the OP wants though. Have to wait and see.
# 11  
Old 01-16-2015
Quote:
Originally Posted by ongoto
@ Don Cragun

I was thinking of a general solution to rounding, not strictly rounding up. My bad.

Setting precision to zero seems to do what the OP wants though. Have to wait and see.
No. It does not. As I said before: "Using printf is great if you want to round to the nearest integer. It is not even close to providing something that calculates the ceiling of a decimal number."

For example, using the sample input data provided by the OP:
Code:
printf '%.0f\n' 4.41 4.11 4.51

produces:
Code:
4
4
5

not the requested:
Code:
5
5
5

Is there some reason why you are so opposed to my suggestion in post #5 in this thread that actually produces the output requested by the OP?
# 12  
Old 01-16-2015
Quote:
Originally Posted by Don Cragun
Is there some reason why you are so opposed to my suggestion in post #5 in this thread that actually produces the output requested by the OP?
No. I'm not opposing anyone. I'm just offering some options because there is no ceiling command in the shell that I know of. I've found several kludge solutions using Dr. Google; nothing absolute about 'ceiling'. bc is supposed to have a ceil() function, but I can't make it work on my system (Centos).

Since there is no absolute answer for the OP, he deserves some choices. That's all I'm doing here. No challenge to you or anyone else.

Your solution is excellent. I'll leave this thread alone.

Last edited by ongoto; 01-16-2015 at 11:20 AM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Sum the fields with 6 decimal places - getting only 2 decimal places as output

I used the below script to Sum up a field in a file based on some unique values. But the problem is when it is summing up the units, it is truncating to 2 decimals and not 6 decimals as in the input file (Input file has the units with up to 6 Decimals – Sample data below, when the units in the 2... (4 Replies)
Discussion started by: brlsubbu
4 Replies

2. Programming

Urgent help needed.. C++ program to convert decimal to hexa decimal

Hi , seq can be 0...128 int windex = seq / 8; int bindex = seq % 8; unsigned char bitvalue = '\x01' << (7-bindex) ; bpv.bitmapvalue = bitvalue; This is the part of a program to convert decimal to bitmap value of hexadecimal. I want this to change to convert only to... (1 Reply)
Discussion started by: greenworld123
1 Replies

3. UNIX for Dummies Questions & Answers

Convert hexa decimal to decimal

Hi, I want to convert two hexadecimal numbers to decimal using unix command line. 1cce446295197a9d6352f9f223a9b698 fc8f99ac06e88c4faf669cf366f60d I tried using `echo "ibase=16; $no |bc` printf '%x\n' "1cce446295197a9d6352f9f223a9b698" but it doesn't work for such big number it... (4 Replies)
Discussion started by: sudhakar T
4 Replies

4. Shell Programming and Scripting

Rounding decimal values in a column

Hi, I wanted to round all the values in a column to nearest integer. I have multiple files with only two columns and I want to round values in column 2. e.g input_file A1 23.971578 A2 34.624976 A3 46.403446 A4 375 A5 1 A6 3 A7 ... (3 Replies)
Discussion started by: ashu0001
3 Replies

5. Shell Programming and Scripting

Bash Rounding to 2 decimal places

I have a number in a bash variable n, and want to round it to 2 decimal places. How can I do that? n=0.0867268 Need to have num=0.09 (1 Reply)
Discussion started by: kristinu
1 Replies

6. Shell Programming and Scripting

Rounding off decimal values

Hi Friends, This is my last post for today. My input file is chr1 100 200 chr1 123 300 chr1 300 400 chr1 420 520 chr10 132344343 132348674 When I try using this command awk '{v=($3+$2)/2; print $0"\t"v}' 1 This is my output chr1 100 200 150 chr1 123 300 211.5 (2 Replies)
Discussion started by: jacobs.smith
2 Replies

7. Homework & Coursework Questions

Decimal to BCD (Binary Coded Decimal)

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Design an algorithm that accepts an input a decimal number and converts it into BCD (Binary... (2 Replies)
Discussion started by: caramba
2 Replies

8. UNIX for Dummies Questions & Answers

Decimal to BCD (Binary Coded Decimal)

Anybody please help me... Design an algorithm that accepts an input a decimal number and converts it into BCD (Binary Coded Decimal) representation. Also, draw its Flow Chart. This is a unix qn... plz post algorithm for that :confused: (1 Reply)
Discussion started by: caramba
1 Replies

9. UNIX for Dummies Questions & Answers

Rounding a decimal

Hi, I am currently using tcsh I am trying to round a decimal number to the ten-thousandths place For instance: 1.23456 is rounded up towards 1.2346 I am not looking for truncation, but for rounding. Anyone know how to do this with awk or expr? Thanks (2 Replies)
Discussion started by: miniwheats
2 Replies
Login or Register to Ask a Question