Ruby 数值 rect() 函数
rect() 是Ruby中一个内置的方法,它返回一个由实数和虚数组成的数组。
语法 :num.rect()
参数 :该函数需要返回实部和虚部的数字。
返回值 :它返回一个由实数和虚数组成的数组。
例子 1 :
# Ruby program for rect()
# method in Numeric
# Initialize a number
num = Complex(10, 6)
# Prints the rect part
puts num.rect()
输出:
10
6
例2 :
# Ruby program for rect()
# method in Numeric
# Initialize a number
num = Complex(18, 16)
# Prints the rect part
puts num.rect()
输出:
18
16