當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。