Ruby | Complex conjugate() function
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" |
chevron_right
filter_none
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" |
chevron_right
filter_none
Output :
Complex conjugate form : 20-90i Complex conjugate form : 0-1i Complex conjugate form : 100+500i
Recommended Posts:
- Ruby | Matrix conjugate() function
- Ruby | Numeric conjugate() function
- Ruby | Complex / function
- Ruby | Complex - function
- Ruby | Complex == function
- Ruby | Complex abs function
- Ruby | Complex + function
- Ruby | Complex -@ function
- Ruby | Complex ** function
- Ruby | Complex denominator function
- Ruby | Complex conj function
- Ruby | Complex angle function
- Ruby | Complex abs2 function
- Ruby | Complex * method
- Ruby | Complex + method
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.