tanh()方法是Math类,用于返回给定值的双曲线正切。
用法: Math.tanh(z)
参数:在此,z是要计算其双曲正切的值。
返回:此方法返回z的双曲线正切值。
范例1:
# Ruby code for tanh() method
require 'cmath'
# Initializing variable
a = 0.3584
b = 2
puts "tanh value of a:#{CMath.tanh(a)}\n\n"
puts "tanh value of b:#{CMath.tanh(b)}\n\n"
输出:
//Write Java code here
tanh value of a:0.3438039328469827 tanh value of b:0.9640275800758169
范例2:
# Ruby code for tanh() method
require 'cmath'
# Initializing variable
a = 0
b = -0.247
puts "tanh value of a:#{CMath.tanh(a)}\n\n"
puts "tanh value of b:#{CMath.tanh(b)}\n\n"
输出:
tanh value of a:0.0 tanh value of b:-0.24209655276165779
相关用法
- Ruby CMath tan()用法及代码示例
- Ruby CMath cos()用法及代码示例
- Ruby CMath sin()用法及代码示例
- Ruby CMath cosh()用法及代码示例
- Ruby CMath cbrt()用法及代码示例
- Ruby CMath sinh()用法及代码示例
- Ruby CMath sqrt()用法及代码示例
- Ruby CMath asin()用法及代码示例
- Ruby CMath acos()用法及代码示例
- Ruby CMath atan()用法及代码示例
- Ruby Math tanh()用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby CMath tanh() Method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。