Ruby CMath sinh()方法及示例

Ruby CMath sinh()方法及示例

sinh()方法 是数学类,用于返回给定值的双曲正弦。

语法: 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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程