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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。