如何在shell中對浮點數進行計算?

來源:互聯網
上載者:User

       在shell中具有最基本的數學計算能力,如可以使用expr 、let 。但這些都只能處理整形資料。為了要計算小數,就需要通過bc命令擴充。下面示範了一個例子,判斷輸出的參數類型,然後計算出它的平方.

  1. #!/bin/sh
  2. #filename: testbc
  3. var=$1
  4. dd=$(echo $var|bc 2>/dev/null )
  5. if [ "$var" != "$dd" ] || [ "$var" == "" ]; then
  6.   echo "$var isn't number!"
  7. elif echo $var | grep "/." > /dev/null 2>
  8. then
  9. #square=$(echo " $var * $var "|bc)
  10.    square=$(echo " $var * $var  "|bc -l)
  11.    echo "$var is a float number,square is:$square"
  12. else
  13.    square=$(echo "$var * $var" | bc)
  14.    echo "$var is a int  number,square is:$square"
  15. fi

執行指令碼的結果如下:

$ testbc aaa

aaa isn't number!

$testbc 2

2 is a int  number,square is:4

$testbc 1.5

1.5 is a float number,square is:2.25

 

如果要處理計算結果的精度,可以使用scale定義精度。可以這樣處理:

$ echo "scale=3; 1.55 * 1.55 " | bc -l

2.402

如果不定義精度,那麼1.55*1.55的值為:2.4025,因為我們定義了精度為3,所以就顯示了小數點後3位.

$ echo "1.55 * 1.55" | bc -l

2.4025

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.