當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby CMath cos()用法及代碼示例


cos()方法是Math類,用於返回給定值的餘弦值。

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


相關用法


注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Ruby CMath cos() Method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。