APL 中的任意精度算术
Arbitrary-precision arithmetics in APL
在 APL 中进行任意精度(积分)运算的最简单方法是什么?
有什么已知的库吗?或者你应该“内联”操作(以及如何)?
Dyalog APL 包含运算符 big
in the dfns workspace,它允许任意精度算术:
'big'⎕CY'dfns'
1234567890 ×big 9876543210
12193263111263526900
NARS2000 具有内置支持:后缀 x
表示扩展精度:
1234567890 × 9876543210x
12193263111263526900
在 APL 中进行任意精度(积分)运算的最简单方法是什么?
有什么已知的库吗?或者你应该“内联”操作(以及如何)?
Dyalog APL 包含运算符 big
in the dfns workspace,它允许任意精度算术:
'big'⎕CY'dfns'
1234567890 ×big 9876543210
12193263111263526900
NARS2000 具有内置支持:后缀 x
表示扩展精度:
1234567890 × 9876543210x
12193263111263526900