Open In App

Ruby | Complex ** function

Last Updated : 16 Aug, 2021
Comments
Improve
Suggest changes
Like Article
Like
Report

Complex#**() is a Complex class method which returns the exponentiation value of a complex value.
 

Syntax: Complex.**()
Parameter: Complex values
Return: exponentiation value of a complex value.


Example #1 : 
 

Ruby
# Ruby code for Complex.**() method

# declaring Complex value
a = Complex(200)

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

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


# exponentiation
puts "Complex ** form : #{a**b}\n\n"

puts "Complex ** form : #{b**c}\n\n"

puts "Complex ** form : #{c**a}\n\n"

Output : 
 

Complex ** form : -0.003491132876870155+0.0035793841978804587i

Complex ** form : 0.02498917737380923+0.16078139726660404i

Complex ** form : 1+0i


Example #2 : 
 

Ruby
# 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)


# exponentiation 
puts "Complex ** form : #{a**b}\n\n"

puts "Complex ** form : #{b**c}\n\n"

puts "Complex ** form : #{c**a}\n\n"

Output : 
 

Complex ** form : -0.048469153281543935-0.2541080831409528i

Complex ** form : Infinity+Infinity*i

Complex ** form : 6.077051204650672e+107-3.0041002556732734e+107i


 


Next Article

Similar Reads