Constructs a complex number from its real and imaginary
parts.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Complex(
T realPart,
T imaginaryPart
)
Public Sub New (
realPart As T,
imaginaryPart As T
)
public:
Complex(
T realPart,
T imaginaryPart
)
new :
realPart : 'T *
imaginaryPart : 'T -> Complex
Parameters
- realPart
- Type: T
The real part. - imaginaryPart
- Type: T
The imaginary part.
Reference