安装BC和任何数学扩展


12

我需要bc在Ubuntu 12.04上安装(我想这是一种语言,所以我想我需要安装一个解析器,但是我真的没有头绪-我需要安装其他东西吗?)安装到Ubuntu 12.04及其上存在的任何其他数学扩展。我找到的唯一尝试从此处下载它的地方是从这里,那里没有足够的说明让我无法实际完成此操作。在网站上四处浏览,最后一次更新似乎是在2000年,这使我非常警惕尝试安装它,甚至我不确定这个地方是否可以得到它。

我应该补充一点,我真的不知道自己在做什么。我需要整个安装过程的傻瓜指南。

真的真的停留在这上。

Answers:


16

安装bc很简单:

sudo apt-get install bc

至于扩展,man bc说:

DIFFERENCES
   This version of bc was implemented from the POSIX P1003.2/D11 draft and
   contains several differences and extensions relative to the  draft  and
   traditional  implementations.

实际上,手册页中充满了标记为“扩展”的内容。

使用以下-l选项应用数学扩展:

-l, --mathlib
      Define the standard math library.

从而:

$ bc <<<'c(10)'
Runtime error (func=(main), adr=6): Function c not defined.
$ bc -l <<<'c(10)'
-.83907152907645245225

谢谢。我拒绝了 我无意为此答案提供在Ubuntu上安装软件的完整指南。
大师
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.