2015-12-12 20:37:45 +00:00
|
|
|
# bc
|
|
|
|
|
|
|
|
> Calculator.
|
|
|
|
|
2016-11-21 16:33:08 +00:00
|
|
|
- Run calculator in interactive mode using the standard math library:
|
2016-10-31 23:37:05 +00:00
|
|
|
|
|
|
|
`bc -l`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Calculate the result of an expression:
|
2015-12-12 20:37:45 +00:00
|
|
|
|
|
|
|
`bc <<< "(1 + 2) * 2 ^ 2"`
|
|
|
|
|
2017-02-25 23:48:24 +00:00
|
|
|
- Calculate expression and force number of decimal places to 10:
|
2015-12-12 20:37:45 +00:00
|
|
|
|
|
|
|
`bc <<< "scale=10; 5 / 3"`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Calculate expression with sine and cosine using mathlib:
|
2015-12-12 20:37:45 +00:00
|
|
|
|
|
|
|
`bc -l <<< "s(1) + c(1)"`
|