Open In App

Ruby | Complex conjugate() function

Improve
Improve
Like Article
Like
Save
Share
Report

Complex#conjugate() is a Complex class method which returns the conjugate part of complex value.

Syntax: Complex.conjugate()

Parameter: Complex values

Return: conjugate part of complex value.

Example #1 :




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


Output :

Complex conjugate form : 200+0i

Complex conjugate form : -1-4i

Complex conjugate form : 0-1i

Example #2 :




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


Output :

Complex conjugate form : 20-90i

Complex conjugate form : 0-1i

Complex conjugate form : 100+500i



Last Updated : 07 Jan, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads