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