atan()
La función en R Language se usa para calcular el valor de la tangente inversa del valor numérico que se le pasa como argumento.
Sintaxis: atan(x)
Parámetro:
x: valor numérico
Ejemplo 1:
# R code to calculate inverse tangent of a value # Assigning values to variables x1 <- -1 x2 <- 0.5 # Using atan() Function atan(x1) atan(x2)
Producción:
[1] -0.7853982 [1] 0.4636476
Ejemplo 2:
# R code to calculate inverse tangent of a value # Assigning values to variables x1 <- 0.224587 x2 <- 0.456732 # Using atan() Function atan(x1) atan(x2)
Producción:
[1] 0.2209213 [1] 0.4284381
Publicación traducida automáticamente
Artículo escrito por nidhi_biet y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA