Ruby | Complex + method
Complex#+() : +() is a Complex class method which peforms the addition operation.
Syntax: Complex.+()
Parameter: Complex values
Return: Addition Operation on complex values.
Example #1 :
# Ruby code for Complex.+() method # declaring Complex value a = Complex( 200 ) # declaring Complex value b = Complex(- 1 , 4 ) # declaring Complex value c = Complex( 'i' ) # Addition puts "Complex + form : #{a+b}\n\n" puts "Complex + form : #{b+c}\n\n" puts "Complex + form : #{c+a}\n\n" |
chevron_right
filter_none
Output :
Complex + form : 199+4i Complex + form : -1+5i Complex + form : 200+1i
Example #2 :
# Ruby code for Complex.+() method # declaring Complex value a = Complex( 20 , 90 ) # declaring Complex value b = Complex( 'i' ) # declaring Complex value c = Complex( 100 , - 500 ) # Addition puts "Complex + form : #{a+b}\n\n" puts "Complex + form : #{b+c}\n\n" puts "Complex + form : #{c+a}\n\n" |
chevron_right
filter_none
Output :
Complex + form : 20+91i Complex + form : 100-499i Complex + form : 120-410i
Recommended Posts:
- Ruby | Complex arg() method
- Ruby | Complex * method
- Ruby | Complex + function
- Ruby | Complex ** function
- Ruby | Complex / function
- Ruby | Complex -@ function
- Ruby | Complex abs function
- Ruby | Complex == function
- Ruby | Complex - function
- Ruby | Complex denominator function
- Ruby | Complex abs2 function
- Ruby | Complex conjugate() function
- Ruby | Complex angle function
- Ruby | Complex conj function
- Ruby | Set & 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.