Meta.Numerics Library
Complex Constructor (re, im)
Meta.NumericsMeta.NumericsComplexComplex(Double, Double)
Initializes a new complex number.
Declaration Syntax
C#Visual BasicVisual C++F#
public Complex(
	double re,
	double im
)
Public Sub New ( _
	re As Double, _
	im As Double _
)
public:
Complex(
	double re, 
	double im
)
new : 
        re:float * 
        im:float -> Complex
Parameters
re (Double)
The real part of the complex number.
im (Double)
The imaginary part of the complex number.