Complex Constructor (Double, Double) |
Constructs a Complex with real and imaginary parts given
by the input arguments.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
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
A double value equal to the real part of the Complex
object.
- im
- Type: SystemDouble
A double value equal to the imaginary part of the
Complex object.
See Also