Click or drag to resize
Complex Constructor
Initializes a complex number from the specified real and imaginary parts.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public Complex(
	double real,
	double imag
)

Parameters

real
Type: SystemDouble
the real part
imag
Type: SystemDouble
the imaginary part
See Also