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


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


R語言中的acos()函數用於計算作為參數傳遞給它的數值的反餘弦值。

用法: acos(x)

參數:
x:數值

範例1:


# R code to calculate inverse cosine of a value
  
# Assigning values to variables 
x1 <- -1
x2 <- 0.5
  
# Using acos() Function
acos(x1)
acos(x2)

輸出:

[1] 3.141593
[1] 1.047198

範例2:


# R code to calculate inverse cosine of a value
  
# Assigning values to variables
x1 <- 0.224587
x2 <- 0.456732
  
# Using acos() Function
acos(x1)
acos(x2)

輸出:

[1] 1.344277
[1] 1.096478

相關用法


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