📜  在 R 编程中计算一个值的正切 - tan()函数

📅  最后修改于: 2022-05-13 01:54:34.040000             🧑  作者: Mango

在 R 编程中计算一个值的正切 - tan()函数

R 语言中的tan()函数用于计算作为参数传递给它的数值的正切。

示例 1:

# R code to calculate tangent of a value
  
# Assigning values to variables
x1 <- -90
x2 <- -30
  
# Using tan() Function
tan(x1)
tan(x2)

输出:

[1] 1.9952
[1] 6.405331

示例 2:

# R code to calculate tangent of a value
  
# Assigning values to variables
x1 <- pi
x2 <- pi / 3
  
# Using tan() Function
tan(x1)
tan(x2)

输出:

[1] -1.224647e-16
[1] 1.732051