Ruby CMath cos()方法及示例

Ruby CMath cos()方法及示例

cos()方法 是数学类,用于返回给定值的余弦。

语法: Math.cos(z)

参数: 这里,z是要计算其余弦值的数值。

返回: 该方法返回z的余弦值。

例子 1 :

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

输出

cos value of a : 0.9364592642630104

cos value of b : -0.4161468365471424

例2 :

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

输出

cos value of a : 1.0

cos value of b : 0.9696502723724634

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程