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


Ruby BigDecimal atan()用法及代码示例


BigDecimal#atan():atan()是BigDecimal类方法,它将反正切值返回指定精度的数字位数。

用法:BigDecimal.atan()

参数:BigDecimal值


返回:指定的精度位数(数字)的反正切值。

示例1:

# Ruby code for BigDecimal.atan() method 
  
# loading library 
require 'bigdecimal'
require 'bigdecimal/util'
  
require "bigdecimal/math"
  
include BigMath 
  
# declaring bigdecimal 
a = BigMath.atan(BigDecimal("10"), 2).to_s 
  
# declaring bigdecimal 
b = BigMath.atan(BigDecimal("0"), 1).to_s 
  
# declaring bigdecimal 
c = BigMath.atan(BigDecimal("-1"), 3).to_s 
  
# atan() method 
puts "BigDecimal a atan method : #{a}\n\n"
  
puts "BigDecimal b atan method : #{b}\n\n"
  
puts "BigDecimal c atan method : #{c}\n\n"

输出:

BigDecimal a atan method : 0.147112767430373459205483371550142166365E1

BigDecimal b atan method : 0.0

BigDecimal c atan method : -0.7853981633974483096143979839729791083E0


示例2:

# Ruby code for BigDecimal.atan() method 
  
# loading library 
require 'bigdecimal'
require 'bigdecimal/util'
  
require "bigdecimal/math"
  
include BigMath 
  
# declaring bigdecimal 
a = BigMath.atan(BigDecimal("120"), 2).to_s 
  
# declaring bigdecimal 
b = BigMath.atan(BigDecimal("1.0"), 4).to_s 
  
# declaring bigdecimal 
c = BigMath.atan(BigDecimal("-3"), 1).to_s 
  
# atan() method 
puts "BigDecimal a atan method : #{a}\n\n"
  
puts "BigDecimal b atan method : #{b}\n\n"
  
puts "BigDecimal c atan method : #{c}\n\n"

输出:

BigDecimal a atan method : 0.1562496517382685592451329995317025796273E1

BigDecimal b atan method : 0.7853981633974483096148978589729791083E0

BigDecimal c atan method : -0.127933953231702952636675255085153E1



相关用法


注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby | BigDecimal atan() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。