If then else for decimal numbers part2


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers If then else for decimal numbers part2
# 1  
Old 01-06-2011
If then else for decimal numbers part2

Hi,

I have a small problem with my script. I have everything in order but it doesnt seem to compare anything less than 1 correctly. If the input is more than 1, then the results is correct.

If the input is 0.xxx (anything) it returns erroneous results. Pls help

Code:
input=0.12

if [ $input -gt 0.1 ]; then
  echo "nok"
else
  echo "ok"
fi


Last edited by Scott; 01-08-2011 at 08:21 AM.. Reason: Please use code tags
# 2  
Old 01-06-2011
Please read the answers to your previous post:
https://www.unix.com/unix-dummies-que...numbers-2.html

Please also mention what Operating System and Shell you are using. It is important because there is normally no way to compare non-integers in Shell as such.
# 3  
Old 01-06-2011
Hi Methyl,

None of those worked. Yes i am using Unix shell script.

thanks.

---------- Post updated at 12:00 AM ---------- Previous update was at 12:00 AM ----------

OS using SUn Solaris and using sh
# 4  
Old 01-06-2011
You are probably using the default Bourne shell which does not support non-integers. Can you use the Korn shell i.e. ksh?
This User Gave Thanks to fpmurphy For This Post:
# 5  
Old 01-06-2011
Is see what you mean. The "bc" examples don't seem to work.

Assuming you can't find ksh93 on your computer, here is another method using "bc" which causes it to output either 9999 or 8888 according to the condition. The script contains test code to try various numbers.
Any approach which invokes an external program for each number could be slow for a large volume of calculations.

Code:
# Try various values
for input in "0.12" "0.1" "0.000001" "0.111111111111111" "75" "0" "2.222"
do
        reply=0
        reply=`echo "if (${input} > 0.1) 9999;if (${input} <= 0.1) 8888"|bc`
        echo "Input is: ${input}    Reply is: ${reply}"

        if [ ${reply} -eq 9999 ]
        then
                echo "${input} Greater than 0.1"
        else
                echo "${input} Not Greater than 0.1"
        fi
        echo ""
done

This User Gave Thanks to methyl For This Post:
# 6  
Old 01-07-2011
Guys,
thanks. it works with ksh. & Metyl thanx for the alternative solution. I will need that as well.

thanks

---------- Post updated 01-08-11 at 07:21 AM ---------- Previous update was 01-07-11 at 12:19 PM ----------

Hi,

I have got another issue now after changing it to Korn shell, it also accepts string values and compares.

How do i only declare the input=floatring numbers only?

pls help
# 7  
Old 01-08-2011
You can test the variable after the read, for example:
Code:
case $input in
  *[^0-9.+-]*) echo invalid input
esac

or
Code:
if [[ $input = *[^0-9.+-]* ]]; then
  echo invalid input
fi

recent ksh93:
Code:
if [[ ! $input =~ ^[+-]?[.0-9]+$ ]]; then
  echo invalid input
fi

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Decimal numbers and letters in the same collums: round numbers

Hi! I found and then adapt the code for my pipeline... awk -F"," -vOFS="," '{printf "%0.2f %0.f\n",$2,$4}' xxx > yyy I add -F"," -vOFS="," (for input and output as csv file) and I change the columns and the number of decimal... It works but I have also some problems... here my columns ... (7 Replies)
Discussion started by: echo manolis
7 Replies

2. Shell Programming and Scripting

Comparing decimal numbers between 0 and 1

For numbers between 0 and 1 the below logic is not working. Output of above shall be "correct" but its echoing "incorrect".Kindly suggest a=.1 if then echo correct else echo incorrect fi Video tutorial on how to use code tags in The UNIX and Linux Forums. (3 Replies)
Discussion started by: itsvikas
3 Replies

3. UNIX for Dummies Questions & Answers

Condition for decimal numbers

Hi experts, My number output has somehting like below filename /temp 0.23 10.23 How do i put a condition to the above numbers? e.g if then the . seem to give me problems. Pls help. thanks ---------- Post updated at 05:25 PM ---------- Previous update was at 05:23 PM... (9 Replies)
Discussion started by: streddy
9 Replies

4. Shell Programming and Scripting

Sum of decimal numbers in column

Hi!!! I have n decimal numbers in column: 1.23 3.45 5.16 . . . How to do arithmetic sum of theese numbers??? Thanks!!!:D (4 Replies)
Discussion started by: tdev457
4 Replies

5. Shell Programming and Scripting

Insert decimal point for numbers

Hi In Unix, I have a file with some numbers like : 45600 12345 I want to insert a decimal point for these numbers based on user input. If the input is 2, the numbers should be changed to 456.00 123.45 If the input is 3, the numbers should be changed to 45.600 12.345 Can... (2 Replies)
Discussion started by: yoursdivu
2 Replies

6. Shell Programming and Scripting

Regarding decimal numbers

Hello... I am new to unix and I am wondering if in a C-shell script , Are we supposed to use only whole numbers........ for example..if a program needs to calculate the average of some numbers........ @ avg = (($1 +$2 + $3)/3)) is returning a whole number.........How can a decimal be... (7 Replies)
Discussion started by: ravindra22
7 Replies

7. Shell Programming and Scripting

Comparing Decimal Numbers

Im trying to compare two numbers with decimals but its not working as expected. a=1 b=1.1 if then echo "equal" fi When I do this it says that the numbers are equal. Ultimately Im using -le and -ge in the if statements but I tested with -eq for simplicity. Any way to make this... (3 Replies)
Discussion started by: Grizzly
3 Replies

8. Shell Programming and Scripting

decimal numbers

Hi friends How can I use "for loop" for decimal numbers? ex: 0.1 < x < 0.6 I used this commands but does'nt work. LIMIT=0.6 for ((x=0.1; x<=LIMIT; x++)) do - - - done Many thanks (1 Reply)
Discussion started by: snow
1 Replies

9. Shell Programming and Scripting

Devision of Decimal Numbers?

How can i devide decimal numbers? I am getting this kind of error: line 18: 200.2/40.234: syntax error in expression (error token is ".2/40.234") What can i do to work around this problem? Thanks for any advice. (4 Replies)
Discussion started by: Vozx
4 Replies

10. Shell Programming and Scripting

compare decimal numbers

Hi anyone, i need to compare two decimal numbers i thought that it could be do it with if but... :( So, i'm writing in csh and i really apreciate if anyone can help me if ( $ppl_kn <= $ppl_wb ) then echo "############# KNdiscount model has the lowest perplexity" set... (5 Replies)
Discussion started by: tmxps
5 Replies
Login or Register to Ask a Question