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


Julia rem用法及代码示例


用法:

rem(x, y)
%(x, y)

欧几里得除法的余数,返回一个与 x 符号相同的值,并且幅度小于 y 。这个值总是准确的。

另请参阅: div mod mod1 divrem

例子

julia> x = 15; y = 4;

julia> x % y
3

julia> x == div(x, y) * y + rem(x, y)
true

julia> rem.(-5:5, 3)'
1×11 adjoint(::Vector{Int64}) with eltype Int64:
 -2  -1  0  -2  -1  0  1  2  0  1  2

相关用法


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