Ruby CMath sin()方法及示例

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程