当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby CMath sin()用法及代码示例


sin()方法是CMath类,用于返回给定值的正弦值。

用法: Math.sin(z)

参数:在此,z是要计算其正弦的值。


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

范例1:

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

输出:

sin value of a:0.35077634808518837

sin value of b:0.9092974268256817

范例2:

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

输出:

sin value of a:0.0

sin value of b:-0.24449611303251328


相关用法


注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby CMath sin() Method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。