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 valuesReturn: 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 Comment More infoAdvertise with us Next Article Ruby | Complex ** function K Kirti_Mangal Follow Improve Article Tags : Ruby Ruby-Methods Ruby Complex-class Similar Reads 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 # Ruby code for Complex.+() method # declaring Complex value a = Complex(200) # 1 min read Ruby | Complex / function Complex#/() is a Complex class method which returns the division value on two complex numbers. Syntax: Complex./() Parameter: Complex values Return: division value on two complex numbers. Example #1 : Ruby # Ruby code for Complex./() method # declaring Complex value a = Complex(200) # declaring Comp 1 min read Ruby | Complex -@ function Complex#-@() is a Complex class method which returns negation of complex values. Syntax: Complex.-@() Parameter: Complex values Return: negation of complex values. Example #1 : Ruby # Ruby code for Complex.-@() method # declaring Complex value a = Complex(200) # declaring Complex value b = Complex(- 1 min read Ruby | Complex - function Complex#-() is a Complex class method which performs the subtraction operation on complex numbers. Syntax: Complex.-() Parameter: Complex values Return: subtraction operation on complex numbers. Example #1 : Ruby # Ruby code for Complex.-() method # declaring Complex value a = Complex(200) # declari 1 min read Ruby | Complex == function Complex#==() is a Complex class method which checks whether two complex values are equal. Syntax: Complex.==() Parameter: Complex values Return: true - if a == b else false Example #1 : Ruby # Ruby code for Complex.==() method # declaring Complex value a = Complex(200) # declaring Complex value b = 1 min read Like