本文簡要介紹rust語言中 f64.rem_euclid
的用法。
用法
pub fn rem_euclid(self, rhs: f64) -> f64
計算 self (mod rhs)
的最小非負餘數。
特別是返回值r
在大多數情況下滿足0.0 <= r < rhs.abs()
。但是,由於浮點舍入誤差,如果 self
的大小遠小於 rhs.abs()
和 self < 0.0
,則可能導致 r == rhs.abs()
違反數學定義。該結果不是函數餘域的元素,但它是實數中最接近的浮點數,因此近似滿足屬性self == self.div_euclid(rhs) * rhs + self.rem_euclid(rhs)
。
例子
let a: f64 = 7.0;
let b = 4.0;
assert_eq!(a.rem_euclid(b), 3.0);
assert_eq!((-a).rem_euclid(b), 1.0);
assert_eq!(a.rem_euclid(-b), 3.0);
assert_eq!((-a).rem_euclid(-b), 1.0);
// limitation due to round-off error
assert!((-f64::EPSILON).rem_euclid(3.0) != 0.0);
相關用法
- Rust f64.recip用法及代碼示例
- Rust f64.round用法及代碼示例
- Rust f64.signum用法及代碼示例
- Rust f64.sqrt用法及代碼示例
- Rust f64.is_finite用法及代碼示例
- Rust f64.div_euclid用法及代碼示例
- Rust f64.hypot用法及代碼示例
- Rust f64.floor用法及代碼示例
- Rust f64.log用法及代碼示例
- Rust f64.asinh用法及代碼示例
- Rust f64.classify用法及代碼示例
- Rust f64.abs用法及代碼示例
- Rust f64.mul_add用法及代碼示例
- Rust f64.asin用法及代碼示例
- Rust f64.cbrt用法及代碼示例
- Rust f64.to_ne_bytes用法及代碼示例
- Rust f64.from_ne_bytes用法及代碼示例
- Rust f64.to_radians用法及代碼示例
- Rust f64.min用法及代碼示例
- Rust f64.atan用法及代碼示例
- Rust f64.is_nan用法及代碼示例
- Rust f64.max用法及代碼示例
- Rust f64.tanh用法及代碼示例
- Rust f64.cos用法及代碼示例
- Rust f64.maximum用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 f64.rem_euclid。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。