当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 tan()用法及代码示例


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

用法: tan(x)

参数:
x:数值

范例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

相关用法


注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Calculate tangent of a value in R Programming – tan() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。