當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby CMath sinh()用法及代碼示例


sinh()方法是Math類,用於返回給定值的雙曲正弦值。

用法: Math.sinh(z)

參數:在此,z是要計算其雙曲正弦的值。


返回:此方法返回z的雙曲正弦值。

範例1:

# Ruby code for sinh() method 
require 'cmath'
  
# Initializing value    
a = 0.3584
b = 2
  
# Printing result     
puts "sinh value of a:#{CMath.sinh(a)}\n\n"
      
puts "sinh value of b:#{CMath.sinh(b)}\n\n"

輸出:

sinh value of a:0.3661222097428432

sinh value of b:3.626860407847019

範例2:

# Ruby code for sinh() method 
require 'cmath'
  
# Initializing value    
a = 0
b = -0.247
  
# Printing result     
puts "sinh value of a:#{CMath.sinh(a)}\n\n"    
puts "sinh value of b:#{CMath.sinh(b)}\n\n"

輸出:

sinh value of a:0.0

sinh value of b:-0.24951920962344676


相關用法


注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Ruby CMath sinh() Method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。