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


R語言 cospi()用法及代碼示例


R 語言中的 cospi() 函數用於計算 x 的餘弦值,它是 pi 的倍數。

用法: cospi(x)

參數:
x:數值、數組或向量

範例1:


# R program to illustrate
# cospi function
  
# Calling the cospi() function
cospi(0)
cospi(1)

輸出:

[1] 1
[1] -1

範例2:


# R program to illustrate
# cospi function
  
# Calling the cospi() function
cospi(1 / 4)
cospi(2 / 5)
cospi(3 / 7)

輸出:

[1] 0.7071068
[1] 0.309017
[1] 0.2225209 

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Compute the cosine value which is multiples of pi in R Programming – cospi() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。