Initializes a new complex number.
Namespace:
Meta.Numerics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax 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
- Type: SystemDouble
The real part of the complex number. - im
- Type: SystemDouble
The imaginary part of the complex number.
See Also