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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。