用法:
rem2pi(x, r::RoundingMode)
计算 x
整数除以 2π
后的余数,商根据舍入模式 r
舍入。换句话说,数量
x - 2π*round(x/(2π),r)
没有任何中间四舍五入。这在内部使用 2π 的高精度近似值,因此将给出比 rem(x,2π,r)
更准确的结果
-
如果
r == RoundNearest
,则结果在区间 中。这通常是最准确的结果。另见RoundNearest
。 -
如果
r == RoundToZero
,则如果x
为正,则结果在区间 中。或 否则。另见RoundToZero
。 -
如果
r == RoundDown
,则结果在区间 中。另见RoundDown
。 -
如果
r == RoundUp
,则结果在区间 中。另见RoundUp
。
例子
julia> rem2pi(7pi/4, RoundNearest)
-0.7853981633974485
julia> rem2pi(7pi/4, RoundDown)
5.497787143782138
相关用法
- Julia Math.rad2deg用法及代码示例
- Julia Math.clamp!用法及代码示例
- Julia Math.sincos方法用法及代码示例
- Julia Math.ldexp用法及代码示例
- Julia Math.cbrt用法及代码示例
- Julia Math.mod2pi用法及代码示例
- Julia Math.frexp用法及代码示例
- Julia Math.modf用法及代码示例
- Julia Math.exponent用法及代码示例
- Julia Math.clamp用法及代码示例
- Julia Math.hypot用法及代码示例
- Julia Math.@evalpoly用法及代码示例
- Julia Math.deg2rad用法及代码示例
- Julia Math.significand用法及代码示例
- Julia MathConstants.ℯ用法及代码示例
- Julia MathConstants.catalan用法及代码示例
- Julia MathConstants.pi用法及代码示例
- Julia MathConstants.golden用法及代码示例
- Julia MathConstants.eulergamma用法及代码示例
- Julia Matrix方法用法及代码示例
- Julia Multimedia.istextmime用法及代码示例
- Julia Meta.quot用法及代码示例
- Julia Multimedia.showable用法及代码示例
- Julia Multimedia.MIME用法及代码示例
- Julia MPFR.BigFloat方法用法及代码示例
注:本文由纯净天空筛选整理自julialang.org大神的英文原创作品 Base.Math.rem2pi — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。