Ruby | Complex conj function Last Updated : 07 Jan, 2020 Comments Improve Suggest changes Like Article Like Report Complex#conj() is a Complex class method which returns the conjugate part of the polar form of complex value. Syntax: Complex.conj() Parameter: Complex values Return: conjugate part of the polar form of complex value. Example #1 : Ruby # Ruby code for Complex.conj() method # declaring Complex value a = Complex(200) # declaring Complex value b = Complex(-1, 4) # declaring Complex value c = Complex('i') # use of conj() puts "Complex conj form : #{a.conj}\n\n" puts "Complex conj form : #{b.conj}\n\n" puts "Complex conj form : #{c.conj}\n\n" Output : Complex conj form : 200+0i Complex conj form : -1-4i Complex conj form : 0-1i Example #2 : Ruby # Ruby code for Complex.conj() method # declaring Complex value a = Complex(20, 90) # declaring Complex value b = Complex('i') # declaring Complex value c = Complex(100, -500) # use of conj() puts "Complex conj form : #{a.conj}\n\n" puts "Complex conj form : #{b.conj}\n\n" puts "Complex conj form : #{c.conj}\n\n" Output : Complex conj form : 20-90i Complex conj form : 0-1i Complex conj form : 100+500i Comment More infoAdvertise with us Next Article Ruby | Complex conj function K Kirti_Mangal Follow Improve Article Tags : Ruby Ruby-Methods Ruby Complex-class Similar Reads 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 # Ruby code for Complex.conjugate() method # declaring Complex value a = Complex(200) # decl 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 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 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) # declar 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 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 Ruby | Complex abs function Complex#abs() is a Complex class method which returns the absolute value of the polar form of complex value. Syntax: Complex.abs() Parameter: Complex values Return: absolute value of the polar form of complex value. Example #1 : Ruby # Ruby code for Complex.abs() method # declaring Complex value a = 1 min read Ruby | Complex denominator function Complex#denominator() : denominator() is a Complex class method which returns the denominator of the complex value. Syntax: Complex.denominator() Parameter: Complex values Return: denominator of the complex value. Example #1 : Ruby # Ruby code for Complex.denominator() method # declaring Complex val 1 min read Ruby | Complex abs2 function Complex#abs2() is a Complex class method which returns the square of absolute value of the polar form of complex value. Syntax: Complex.abs2() Parameter: Complex values Return: square of absolute value of the polar form of complex value. Example #1 : Ruby # Ruby code for Complex.abs2() method # decl 1 min read Like