1 out of 1 rated this helpful - Rate this topic

Complex Structure

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Represents a complex number.

Namespace:  System.Numerics
Assembly:  System.Numerics (in System.Numerics.dll)
[SerializableAttribute]
public struct Complex : IEquatable<Complex>, 
	IFormattable

The Complex type exposes the following members.

  Name Description
Public method Complex Initializes a new instance of the Complex structure using the specified real and imaginary values.
Top
  Name Description
Public property Imaginary Gets the imaginary component of the current Complex object.
Public property Magnitude Gets the magnitude (or absolute value) of a complex number.
Public property Phase Gets the phase of a complex number.
Public property Real Gets the real component of the current Complex object.
Top
  Name Description
Public method Static member Abs Gets the absolute value (or magnitude) of a complex number.
Public method Static member Acos Returns the angle that is the arc cosine of the specified complex number.
Public method Static member Add Adds two complex numbers and returns the result.
Public method Static member Asin Returns the angle that is the arc sine of the specified complex number.
Public method Static member Atan Returns the angle that is the arc tangent of the specified complex number.
Public method Static member Conjugate Computes the conjugate of a complex number and returns the result.
Public method Static member Cos Returns the cosine of the specified complex number.
Public method Static member Cosh Returns the hyperbolic cosine of the specified complex number.
Public method Static member Divide Divides one complex number by another and returns the result.
Public method Equals(Complex) Returns a value that indicates whether the current instance and a specified complex number have the same value.
Public method Equals(Object) Returns a value that indicates whether the current instance and a specified object have the same value. (Overrides ValueType.Equals(Object).)
Public method Static member Exp Returns e raised to the power specified by a complex number.
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method Static member FromPolarCoordinates Creates a complex number from a point's polar coordinates.
Public method GetHashCode Returns the hash code for the current Complex object. (Overrides ValueType.GetHashCode().)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method Static member Log(Complex) Returns the natural (base e) logarithm of a specified complex number.
Public method Static member Log(Complex, Double) Returns the logarithm of a specified complex number in a specified base.
Public method Static member Log10 Returns the base-10 logarithm of a specified complex number.
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Static member Multiply Returns the product of two complex numbers.
Public method Static member Negate Returns the additive inverse of a specified complex number.
Public method Static member Pow(Complex, Double) Returns a specified complex number raised to a power specified by a double-precision floating-point number.
Public method Static member Pow(Complex, Complex) Returns a specified complex number raised to a power specified by a complex number.
Public method Static member Reciprocal Returns the multiplicative inverse of a complex number.
Public method Static member Sin Returns the sine of the specified complex number.
Public method Static member Sinh Returns the hyperbolic sine of the specified complex number.
Public method Static member Sqrt Returns the square root of a specified complex number.
Public method Static member Subtract Subtracts one complex number from another and returns the result.
Public method Static member Tan Returns the tangent of the specified complex number.
Public method Static member Tanh Returns the hyperbolic tangent of the specified complex number.
Public method ToString() Converts the value of the current complex number to its equivalent string representation in Cartesian form. (Overrides ValueType.ToString().)
Public method ToString(IFormatProvider) Converts the value of the current complex number to its equivalent string representation in Cartesian form by using the specified culture-specific formatting information.
Public method ToString(String) Converts the value of the current complex number to its equivalent string representation in Cartesian form by using the specified format for its real and imaginary parts.
Public method ToString(String, IFormatProvider) Converts the value of the current complex number to its equivalent string representation in Cartesian form by using the specified format and culture-specific format information for its real and imaginary parts.
Top
  Name Description
Public operator Static member Addition Adds two complex numbers.
Public operator Static member Division Divides a specified complex number by another specified complex number.
Public operator Static member Equality Returns a value that indicates whether two complex numbers are equal.
Public operator Static member Explicit(BigInteger to Complex) Defines an explicit conversion of a BigInteger value to a complex number.
Public operator Static member Explicit(Decimal to Complex) Defines an explicit conversion of a Decimal value to a complex number.
Public operator Static member Implicit(Byte to Complex) Defines an implicit conversion of an unsigned byte to a complex number.
Public operator Static member Implicit(Double to Complex) Defines an implicit conversion of a double-precision floating-point number to a complex number.
Public operator Static member Implicit(Int16 to Complex) Defines an implicit conversion of a 16-bit signed integer to a complex number.
Public operator Static member Implicit(Int32 to Complex) Defines an implicit conversion of a 32-bit signed integer to a complex number.
Public operator Static member Implicit(Int64 to Complex) Defines an implicit conversion of a 64-bit signed integer to a complex number.
Public operator Static member Implicit(SByte to Complex) Defines an implicit conversion of a signed byte to a complex number.
Public operator Static member Implicit(Single to Complex) Defines an implicit conversion of a single-precision floating-point number to a complex number.
Public operator Static member Implicit(UInt16 to Complex) Defines an implicit conversion of a 16-bit unsigned integer to a complex number.
Public operator Static member Implicit(UInt32 to Complex) Defines an implicit conversion of a 32-bit unsigned integer to a complex number.
Public operator Static member Implicit(UInt64 to Complex) Defines an implicit conversion of a 64-bit unsigned integer to a complex number.
Public operator Static member Inequality Returns a value that indicates whether two complex numbers are not equal.
Public operator Static member Multiply Multiplies two specified complex numbers.
Public operator Static member Subtraction Subtracts a complex number from another complex number.
Public operator Static member UnaryNegation Returns the additive inverse of a specified complex number.
Top
  Name Description
Public field Static member ImaginaryOne Returns a new Complex instance with a real number equal to zero and an imaginary number equal to one.
Public field Static member One Returns a new Complex instance with a real number equal to one and an imaginary number equal to zero.
Public field Static member Zero Returns a new Complex instance with a real number equal to zero and an imaginary number equal to zero.
Top

A complex number is a number that comprises a real number part and an imaginary number part. A complex number z is usually written in the form z = x + yi, where x and y are real numbers, and i is the imaginary unit that has the property i2 = -1. The real part of the complex number is represented by x, and the imaginary part of the complex number is represented by y.

The Complex type uses the Cartesian coordinate system (real, imaginary) when instantiating and manipulating complex numbers. A complex number can be represented as a point in a two-dimensional coordinate system, which is known as the complex plane. The real part of the complex number is positioned on the x-axis (the horizontal axis), and the imaginary part is positioned on the y-axis (the vertical axis).

Any point in the complex plane can also be expressed based on its absolute value, by using the polar coordinate system., In polar coordinates, a point is characterized by two numbers:

  • Its magnitude, which is the distance of the point from the origin (that is, 0,0, or the point at which the x-axis and the y-axis intersect).

  • Its phase, which is the angle between the real axis and the line drawn from the origin to the point.

Instantiating a Complex Number

You can assign a value to a complex number in one of the following ways:

  • By passing two Double values to its constructor. The first value represents the real part of the complex number, and the second value represents its imaginary part. These values represent the position of the complex number in the two-dimensional Cartesian coordinate system.

  • By calling the static (Shared in Visual Basic) Complex.FromPolarCoordinates method to create a complex number from its polar coordinates.

  • By assigning a Byte, SByte, Int16, UInt16, Int32, UInt32, Int64, UInt64, Single, or Double value to a Complex object. The value becomes the real part of the complex number, and its imaginary part equals 0.

  • By casting (in C#) or converting (in Visual Basic) a Decimal or BigInteger value to a Complex object. The value becomes the real part of the complex number, and its imaginary part equals 0.

  • By assigning the complex number that is returned by a method or operator to a Complex object. For example, Complex.Add is a static method that returns a complex number that is the sum of two complex numbers, and the Complex.Addition operator adds two complex numbers and returns the result.

The following example demonstrates each of these five ways of assigning a value to a complex number.


using System;
using System.Numerics;

public class Example
{
   public static void Main()
   {
      // Create a complex number by calling its class constructor.
      Complex c1 = new Complex(12, 6);
      Console.WriteLine(c1);

      // Assign a Double to a complex number.
      Complex c2 = 3.14;
      Console.WriteLine(c2);

      // Cast a Decimal to a complex number.
      Complex c3 = (Complex) 12.3m;
      Console.WriteLine(c3);

      // Assign the return value of a method to a Complex variable.
      Complex c4 = Complex.Pow(Complex.One, -1);
      Console.WriteLine(c4);

      // Assign the value returned by an operator to a Complex variable.
      Complex c5 = Complex.One + Complex.One;
      Console.WriteLine(c5);

      // Instantiate a complex number from its polar coordinates.
      Complex c6 = Complex.FromPolarCoordinates(10, .524);
      Console.WriteLine(c6);
   }
}
// The example displays the following output:
//       (12, 6)
//       (3.14, 0)
//       (12.3, 0)
//       (1, 0)
//       (2, 0)
//       (8.65824721882145, 5.00347430269914)


Operations with Complex Numbers

The Complex structure in the .NET Framework includes members that provide the following functionality:

  • Methods to compare two complex numbers to determine whether they are equal.

  • Operators to perform arithmetic operations on complex numbers. Complex operators enable you to perform addition, subtraction, multiplication, division, and unary negation with complex numbers.

  • Methods to perform other numerical operations on complex numbers. In addition to the four basic arithmetic operations, you can raise a complex number to a specified power, find the square root of a complex number, and get the absolute value of a complex number.

  • Methods to perform trigonometric operations on complex numbers. For example, you can calculate the tangent of an angle represented by a complex number.

Precision and Complex Numbers

The real and imaginary parts of a complex number are represented by two double-precision floating-point values. This means that Complex values, like double-precision floating-point values, can lose precision as a result of numerical operations. This means that strict comparisons for equality of two Complex values may fail, even if the difference between the two values is due to a loss of precision. For more information, see Double.

For example, performing exponentiation on the logarithm of a number should return the original number. However, in some cases, the loss of precision of floating-point values can cause slight differences between the two values, as the following example illustrates.


Complex value = new Complex(Double.MinValue/2, Double.MinValue/2);
Complex value2 = Complex.Exp(Complex.Log(value));
Console.WriteLine("{0} \n{1} \nEqual: {2}", value, value2, 
                                            value == value2);
// The example displays the following output:
//    (-8.98846567431158E+307, -8.98846567431158E+307)
//    (-8.98846567431161E+307, -8.98846567431161E+307)
//    Equal: False


Similarly, the following example, which calculates the square root of a Complex number, produces slightly different results on the 32-bit and IA64 versions of the .NET Framework.


Complex minusOne = new Complex(-1, 0);
Console.WriteLine(Complex.Sqrt(minusOne));
// The example displays the following output:
//    (6.12303176911189E-17, 1) on 32-bit systems.
//    (6.12323399573677E-17,1) on IA64 systems.


Complex Numbers, Infinity, and NaN

The real and imaginary parts of a complex number are represented by Double values. In addition to ranging from Double.MinValue to Double.MaxValue, the real or imaginary part of a complex number can have a value of Double.PositiveInfinity, Double.NegativeInfinity, or Double.NaN. Double.PositiveInfinity, Double.NegativeInfinity, and Double.NaN all propagate in any arithmetic or trigonometric operation.

In the following example, division by Zero produces a complex number whose real and imaginary parts are both Double.NaN. As a result, performing multiplication with this value also produces a complex number whose real and imaginary parts are Double.NaN. Similarly, performing a multiplication that overflows the range of the Double type produces a complex number whose real part is Double.NaN and whose imaginary part is Double.PositiveInfinity. Subsequently performing division with this complex number returns a complex number whose real part is Double.NaN and whose imaginary part is Double.PositiveInfinity.


using System;
using System.Numerics;

public class Example
{
   public static void Main()
   {
      Complex c1 = new Complex(Double.MaxValue / 2, Double.MaxValue /2);

      Complex c2 = c1 / Complex.Zero;
      Console.WriteLine(c2.ToString());
      c2 = c2 * new Complex(1.5, 1.5);
      Console.WriteLine(c2.ToString());
      Console.WriteLine();

      Complex c3 = c1 * new Complex(2.5, 3.5);
      Console.WriteLine(c3.ToString());
      c3 = c3 + new Complex(Double.MinValue / 2, Double.MaxValue / 2); 
      Console.WriteLine(c3);
   }
}
// The example displays the following output:
//       (NaN, NaN)
//       (NaN, NaN)
//       (NaN, Infinity)
//       (NaN, Infinity)


Mathematical operations with complex numbers that are invalid or that overflow the range of the Double data type do not throw an exception. Instead, they return a Double.PositiveInfinity, Double.NegativeInfinity, or Double.NaN under the following conditions:

Note that this applies to any intermediate calculations performed by a method. For example, the multiplication of new Complex(9e308, 9e308) and new Complex(2.5, 3.5) uses the formula (ac - bd) + (ad + bc)i. The calculation of the real component that results from the multiplication evaluates the expression 9e308 * 2.5 - 9e308 * 3.5. Each intermediate multiplication in this expression returns Double.PositiveInfinity, and the attempt to subtract Double.PositiveInfinity from Double.PositiveInfinity returns Double.NaN.

Formatting a Complex Number

By default, the string representation of a complex number takes the form (real, imaginary), where real and imaginary are the string representations of the Double values that form the complex number's real and imaginary components. Some overloads of the ToString method allow customization of the string representations of these Double values to reflect the formatting conventions of a particular culture or to appear in a particular format defined by a standard or custom numeric format string. (For more information, see Standard Numeric Format Strings and Custom Numeric Format Strings.)

One of the more common ways of expressing the string representation of a complex number takes the form a + bi, where a is the complex number's real component, and b is the complex number's imaginary component. In electrical engineering, a complex number is most commonly expressed as a + bj. You can return the string representation of a complex number in either of these two forms. To do this, define a custom format provider by implementing the ICustomFormatter and IFormatProvider interfaces, and then call the String.Format(IFormatProvider, String, Object[]) method.

The following example defines a ComplexFormatter class that represents a complex number as a string in the form of either a + bi or a + bj.


using System;
using System.Numerics;

public class ComplexFormatter :IFormatProvider, ICustomFormatter
{
   public object GetFormat(Type formatType) 
   {   
      if (formatType == typeof(ICustomFormatter))
         return this;
      else
         return null;
   }

   public string Format(string format, object arg, 
                        IFormatProvider provider)
   {
      if (arg is Complex)
      {
         Complex c1 = (Complex) arg; 
         // Check if the format string has a precision specifier.
         int precision;
         string fmtString = String.Empty;
         if (format.Length > 1) {
            try {
               precision = Int32.Parse(format.Substring(1));
            }
            catch (FormatException) {
               precision = 0;
            }
            fmtString = "N" + precision.ToString();
         }
         if (format.Substring(0, 1).Equals("I", StringComparison.OrdinalIgnoreCase))
            return c1.Real.ToString(fmtString) + " + " + c1.Imaginary.ToString(fmtString) + "i";
         else if (format.Substring(0, 1).Equals("J", StringComparison.OrdinalIgnoreCase))
            return c1.Real.ToString(fmtString) + " + " + c1.Imaginary.ToString(fmtString) + "j";
         else
            return c1.ToString(format, provider);
      }
      else
      {
         if (arg is IFormattable)
            return ((IFormattable) arg).ToString(format, provider);
         else if (arg != null) 
            return arg.ToString();
         else
            return String.Empty;
      }                        
   }
}


The following example then uses this custom formatter to display the string representation of a complex number.


public class Example
{
   public static void Main()
   {
      Complex c1 = new Complex(12.1, 15.4);
      Console.WriteLine("Formatting with ToString():       " + 
                        c1.ToString());
      Console.WriteLine("Formatting with ToString(format): " + 
                        c1.ToString("N2"));
      Console.WriteLine("Custom formatting with I0:        " + 
                        String.Format(new ComplexFormatter(), "{0:I0}", c1));
      Console.WriteLine("Custom formatting with J3:        " + 
                        String.Format(new ComplexFormatter(), "{0:J3}", c1));
   }
}
// The example displays the following output:
//    Formatting with ToString():       (12.1, 15.4)
//    Formatting with ToString(format): (12.10, 15.40)
//    Custom formatting with I0:        12 + 15i
//    Custom formatting with J3:        12.100 + 15.400j


.NET Framework

Supported in: 4.5, 4

.NET Framework Client Profile

Supported in: 4

Windows 8 Consumer Preview, Windows Server 8 Beta, Windows 7, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)