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