当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia factorial用法及代码示例


用法:

factorial(n::Integer)

n 的阶乘。如果 n Integer ,则阶乘计算为整数(提升到至少 64 位)。请注意,如果 n 不小,这可能会溢出,但您可以使用 factorial(big(n)) 以任意精度精确计算结果。

另见 binomial

例子

julia> factorial(6)
720

julia> factorial(21)
ERROR: OverflowError: 21 is too large to look up in the table; consider using `factorial(big(21))` instead
Stacktrace:
[...]

julia> factorial(big(21))
51090942171709440000

外部链接

相关用法


注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Base.factorial — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。