Ruby | Complex abs function Last Updated : 07 Jan, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report 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 = Complex(200) # declaring Complex value b = Complex(-1, 4) # declaring Complex value c = Complex('i') # use of abs() puts "Complex abs form : #{a.abs}\n\n" puts "Complex abs form : #{b.abs}\n\n" puts "Complex abs form : #{c.abs}\n\n" Output : Complex abs form : 200 Complex abs form : 4.123105625617661 Complex abs form : 1 Example #2 : Ruby # Ruby code for Complex.abs() method # declaring Complex value a = Complex(20, 90) # declaring Complex value b = Complex('i') # declaring Complex value c = Complex(100, -500) # use of abs() puts "Complex abs form : #{a.abs}\n\n" puts "Complex abs form : #{b.abs}\n\n" puts "Complex abs form : #{c.abs}\n\n" Output : Complex abs form : 92.19544457292888 Complex abs form : 1 Complex abs form : 509.9019513592785 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 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 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 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 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 Like