在 R 编程中计算一个值的正切 - tan()函数
R 语言中的tan()
函数用于计算作为参数传递给它的数值的正切。
Syntax: tan(x)
Parameter:
x: Numeric value
示例 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