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


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