Constructs a Complex with real and imaginary parts given by the input arguments.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

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

Parameters

re
Type: System..::.Double
A double value equal to the real part of the Complex object.
im
Type: System..::.Double
A double value equal to the imaginary part of the Complex object.

See Also