Вычисление обратного косинуса значения в программировании на R - функция acos ()

Опубликовано: 18 Февраля, 2022

acos() function in R Language is used to calculate the inverse cosine value of the numeric value passed to it as argument.

Syntax: acos(x)

Parameter:
x: Numeric value

Example 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

Example 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