Open In App

Ruby | Complex conj function

Last Updated : 07 Jan, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
Complex#conj() is a Complex class method which returns the conjugate part of the polar form of complex value.
Syntax: Complex.conj() Parameter: Complex values Return: conjugate part of the polar form of complex value.
Example #1 : Ruby
# Ruby code for Complex.conj() method

# declaring Complex value
a = Complex(200)

# declaring Complex value
b = Complex(-1, 4)

# declaring Complex value
c = Complex('i')


# use of conj()  
puts "Complex conj form : #{a.conj}\n\n"

puts "Complex conj form : #{b.conj}\n\n"

puts "Complex conj form : #{c.conj}\n\n"
Output :
Complex conj form : 200+0i

Complex conj form : -1-4i

Complex conj form : 0-1i

Example #2 : Ruby
# Ruby code for Complex.conj() method

# declaring Complex value
a = Complex(20, 90)

# declaring Complex value
b = Complex('i')

# declaring Complex value
c = Complex(100, -500)

# use of conj()  
puts "Complex conj form : #{a.conj}\n\n"

puts "Complex conj form : #{b.conj}\n\n"

puts "Complex conj form : #{c.conj}\n\n"
Output :
Complex conj form : 20-90i

Complex conj form : 0-1i

Complex conj form : 100+500i


Next Article

Similar Reads