Ruby CMath tanh()方法及示例
tanh()方法 是数学类,用于返回给定值的双曲正切。
语法: 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