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