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


Ruby Complex arg()用法及代码示例


Complex#arg()是Complex类方法,它返回复数值的极坐标形式的角部分。

用法:Complex.arg()

参数:复数值


返回:极角部分的复数形式。

示例1:

# Ruby code for Complex.arg() method 
  
# declaring Complex value 
a = Complex(200) 
  
# declaring Complex value 
b = Complex(-1, 4) 
  
# declaring Complex value 
c = Complex('i') 
  
  
# use of arg()   
puts "Complex arg form : #{a.arg}\n\n"
  
puts "Complex arg form : #{b.arg}\n\n"
  
puts "Complex arg form : #{c.arg}\n\n"

输出:

Complex arg form : 0.0

Complex arg form : 1.8157749899217608

Complex arg form : 1.5707963267948966

示例2:

# Ruby code for Complex.arg() method 
  
# declaring Complex value 
a = Complex(20, 90) 
  
# declaring Complex value 
b = Complex('i') 
  
# declaring Complex value 
c = Complex(100, -500) 
  
# use of arg()   
puts "Complex arg form : #{a.arg}\n\n"
  
puts "Complex arg form : #{b.arg}\n\n"
  
puts "Complex arg form : #{c.arg}\n\n"

输出:

Complex arg form : 1.3521273809209546

Complex arg form : 1.5707963267948966

Complex arg form : -1.373400766945016



相关用法


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