acos()是Ruby中的内置函数,它以弧度返回数字(参数)的反余弦值。 acos()函数返回的值始终位于-pi到+ pi之间。
用法:Math.acos(value)
参数:此函数接受一个强制性参数值,该值指定应计算其反余弦值的值。它必须介于-1和+1之间,否则将抛出域错误(范围错误)。
返回值:该函数返回-pi和+ pi之间的数值。逆时针角度以弧度为单位。
例子1:
#Ruby program for acos() function
#Assigning values
val1 = 1 val2 = -1 val3 = 0.5 val4 = -0.7
#Prints the acos() value
puts Math.acos(val1)
puts Math.acos(val2)
puts Math.acos(val3)
puts Math.acos(val4)
输出:
0.0 3.141592653589793 1.0471975511965979 2.3461938234056494
例子2:
#Ruby program for acos() function
#Assigning values
val1 = 0.8 val2 = -0.955 val3 = 0.74 val4 = -0.356
#Prints the acos() value
puts Math.acos(val1)
puts Math.acos(val2)
puts Math.acos(val3)
puts Math.acos(val4)
输出:
0.6435011087932843 2.8404561080364212 0.7377259684532488 1.9347802832764904
相关用法
- Ruby CMath acos()用法及代码示例
- Ruby Math exp()用法及代码示例
- Ruby Math erf()用法及代码示例
- Ruby Math tan()用法及代码示例
- Ruby Math log()用法及代码示例
- Ruby Math sin()用法及代码示例
- Ruby Math cos()用法及代码示例
- Ruby Math erfc()用法及代码示例
- Ruby Math cosh()用法及代码示例
- Ruby Math sqrt()用法及代码示例
- Ruby Math tanh()用法及代码示例
- Ruby Math atan2()用法及代码示例
- Ruby Math atanh()用法及代码示例
- Ruby Math cbrt()用法及代码示例
- Ruby Math lgamma()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Math acos() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。