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


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


tanpi()R 语言中的函数用于计算 x 的正切值,它是 pi 的倍数。

用法: tanpi(x)

参数:
x:数值、数组或向量

范例1:


# R program to illustrate 
# tanpi function 
    
# Calling the tanpi() function 
tanpi(0) 
tanpi(1 / 4) 

输出:

[1] 0
[1] 1

范例2:


# R program to illustrate 
# tanpi function 
    
# Calling the tanpi() function 
tanpi(2 / 3) 
tanpi(1 / 2) 

输出:

[1] -1.732051
[1] NaN

相关用法


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