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


Rust f64.cosh用法及代码示例


本文简要介绍rust语言中 f64.cosh 的用法。

用法

pub fn cosh(self) -> f64

双曲余弦函数。

例子

let e = std::f64::consts::E;
let x = 1.0_f64;
let f = x.cosh();
// Solving cosh() at 1 gives this result
let g = ((e * e) + 1.0) / (2.0 * e);
let abs_difference = (f - g).abs();

// Same result
assert!(abs_difference < 1.0e-10);

相关用法


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