CMPLXF, CMPLX, CMPLXL
From cppreference.com
Defined in header
<complex.h>
|
||
(since C11) | ||
(since C11) | ||
(since C11) | ||
Returns a complex number composed of real
as the real part and imag
as the imaginary part. The functions are implemented as macros.
The returned value in suitable for use as initializer for variables with static or thread storage duration, but only if real
and imag
are also suitable.
[edit] Parameters
real | - | the real part of the complex number to return |
imag | - | the imaginary part of the complex number to return |
[edit] Return value
A complex number composed of real
and imag
as the real and imaginary parts.
[edit] Example
This section is incomplete Reason: no example |