Ruby | Complex + function
Complex#+@() : +@() is a Complex class method which returns the positive value for a complex value i.e. a = +(a)
Syntax: Complex.+()
Parameter: Complex values
Return: positive value for a complex value.
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' ) # positive value puts "Complex + form : #{+a}\n\n" puts "Complex + form : #{+b}\n\n" puts "Complex + form : #{+c}\n\n" |
chevron_right
filter_none
Output :
Complex + form : -200+800i Complex + form : -4-1i Complex + form : 0+200i
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 ) # positive value puts "Complex + form : #{+a}\n\n" puts "Complex + form : #{+b}\n\n" puts "Complex + form : #{+c}\n\n" |
chevron_right
filter_none
Output :
Complex + form : 20+90i Complex + form : 0+1i Complex + form : 100-500i
Recommended Posts:
- Ruby | Complex == function
- Ruby | Complex / function
- Ruby | Complex ** function
- Ruby | Complex - function
- Ruby | Complex -@ function
- Ruby | Complex abs function
- Ruby | Complex conj function
- Ruby | Complex abs2 function
- Ruby | Complex denominator function
- Ruby | Complex angle function
- Ruby | Complex conjugate() function
- Ruby | Complex + method
- Ruby | Complex arg() method
- Ruby | Complex * method
- Ruby | Set add? function
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.