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


Julia nextpow用法及代碼示例


用法:

nextpow(a, x)

最小的 a^n 不小於 x ,其中 n 是一個非負整數。 a 必須大於 1,x 必須大於 0。

另見 prevpow

例子

julia> nextpow(2, 7)
8

julia> nextpow(2, 9)
16

julia> nextpow(5, 20)
25

julia> nextpow(4, 16)
16

相關用法


注:本文由純淨天空篩選整理自julialang.org 大神的英文原創作品 Base.nextpow — Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。