User Tools

Site Tools


maths

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
maths [2015/05/09 21:17] luke7858maths [2024/05/23 07:26] (current) – external edit 127.0.0.1
Line 16: Line 16:
 -l = --mathlib = Defines the standard math library -l = --mathlib = Defines the standard math library
 </sxh> </sxh>
 +\\
 === Limiting the decimal place === === Limiting the decimal place ===
 You can then use this with printf to limit the number of decimals shown: You can then use this with printf to limit the number of decimals shown:
Line 26: Line 27:
 <sxh bash> <sxh bash>
 bc -l <<< "($used / ( $free + $used) ) * 100 ") bc -l <<< "($used / ( $free + $used) ) * 100 ")
 +</sxh>
 +\\
 +=== Comparing Decimals with bc ===
 +You are able to compare decimal numbers using bc. The output will return 1 or 0 depending on the results. You can then use this with an if statment -le / -ge etc
 +<sxh bash>
 +1.4 '<' 1.3 | bc -l
 +</sxh>
 +\\
 +<sxh bash>
 +example= $(echo 1.4 '<' 1.3 | bc -l)
 +if [ $example-eq 0 ]; then
 +elif [ $example-eq 1  ]; then
 +fi
 </sxh> </sxh>
maths.1431206271.txt.gz · Last modified: 2024/05/23 07:26 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki