Initializes a new complex number.

Namespace:  Meta.Numerics
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public Complex(
	double re,
	double im
)
Public Sub New ( _
	re As Double, _
	im As Double _
)
public:
Complex(
	double re, 
	double im
)

Parameters

re
Double
The real part of the complex number.
im
Double
The imaginary part of the complex number.

See Also