1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/dc.md

24 lines
607 B
Markdown
Raw Normal View History

2017-12-15 12:51:17 -05:00
# dc
> An arbitrary precision calculator. Uses reverse polish notation (RPN).
- Run calculator in interactive mode:
`dc`
2017-12-15 17:12:48 -05:00
- Execute dc script in file:
`dc -f {{file}}`
- Calculate 4 times 5 [4 5 *], subtract 17 [17 -], and [p]rint the output (using echo):
2017-12-15 12:51:17 -05:00
`echo "4 5 * 17 - p"| dc`
2017-12-16 15:18:43 -05:00
- Set number of decimal places to 7 [7 k], calculate 5 divided by -3 [5 _3 /] and [p]rint (using dc -e):
2017-12-15 12:51:17 -05:00
2017-12-15 17:12:48 -05:00
`dc -e "7 k 5 _3 / p"`
2017-12-15 12:51:17 -05:00
2017-12-17 16:47:56 -05:00
- Calculate the golden ratio, phi: Set number of decimal places to 100 [100 k], square root of 5 [5 v] plus 1 [1 +], divided by 2 [2 /], and [p]rint result:
2017-12-15 12:51:17 -05:00
2017-12-15 17:12:48 -05:00
`dc -e "100 k 5 v 1 + 2 / p"`