Ruby CMath acos()方法

Ruby CMath acos()方法

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程