atan()方法是CMath类,用于返回给定值的反正切。
用法: Math.atan(z)
参数:在此,z是要计算反正切的值。
返回:此方法返回z的反正切值。
范例1:
# Ruby code for atan() method
require 'cmath'
# Initializing value
a = 0.3584
b = 2
# Printing result
puts "atan value of a:#{CMath.atan(a)}\n\n"
puts "atan value of b:#{CMath.atan(b)}\n\n"
输出:
atan value of a:0.34413842830780517 atan value of b:1.1071487177940904
范例2:
# Ruby code for atan() method
require 'cmath'
# Initializing value
a = 0
b = -0.247
# Printing result
puts "atan value of a:#{CMath.atan(a)}\n\n"
puts "atan value of b:#{CMath.atan(b)}\n\n"
输出:
atan value of a:0.0 atan value of b:-0.24215314674687552
相关用法
- Ruby CMath tan()用法及代码示例
- Ruby CMath sin()用法及代码示例
- Ruby CMath cos()用法及代码示例
- Ruby CMath tanh()用法及代码示例
- Ruby CMath cbrt()用法及代码示例
- Ruby CMath sqrt()用法及代码示例
- Ruby CMath cosh()用法及代码示例
- Ruby CMath asin()用法及代码示例
- Ruby CMath sinh()用法及代码示例
- Ruby CMath acos()用法及代码示例
- Ruby Math atan()用法及代码示例
- Ruby BigDecimal atan()用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby CMath atan() Method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。