![]() |
VOOZH | about |
| Macro Name | Expands To |
|---|---|
| complex | _Complex |
| imaginary | _Imaginary |
| _Complex_I | (const float _Complex) i |
| _Imaginary_I | (const float _Imaginary) i |
| I | _Imaginary_I(_Complex_I if _Imaginary_I is absent) |
z = 1.3+4.9i
z = 3.2+4.1i
| Function | Description |
|---|---|
| float cabsf(float complex arg) double cabs(double complex arg) long double cabsl(long double complex arg) |
It returns the absolute value of complex argument |
| float complex cacosf(float complex arg) double complex cacos(double complex arg) long double complex cacosl(long double complex arg) |
It returns the complex arc cosine values of complex argument |
| float complex cacoshf(float complex arg) double complex cacosh(double complex arg) long double complex cacoshl(long double complex arg) |
It returns the complex arc hyperbolic cosine values of complex argument |
| float cargf(float complex arg) double carg(double complex arg) long double cargl(long double complex arg) |
It returns the phase angle of complex argument (in radians). |
| float complex casinf(float complex arg) double complex casin(double complex arg) long double complex casinl(long double complex arg) |
It returns the complex arc sine values of complex argument |
| float complex casinhf(float complex arg) double complex casin(double complex arg) long double complex casinl(long double complex arg) |
It returns the complex arc hyperbolic sine values of complex argument |
| float complex catanf(float complex arg) double complex catan(double complex arg) long double complex catanl(long double complex arg) |
It returns the complex arc tangent values of complex argument |
| float complex catanhf(float complex arg) double complex catan(double complex arg) long double complex catanl(long double complex arg) |
It returns the complex arc hyperbolic tangent values of complex argument |
| float complex ccosf(float complex arg) double complex ccos(double complex arg) long double complex ccosl(long double complex arg) |
It returns the complex cosine values of complex argument |
| float complex cexpf(float complex arg) double complex cexp(double complex arg) long double complex cexpl(long double complex arg) |
It returns the complex value earg where e is the natural logarithm base |
| float crealf(float complex arg) double creal(double complex arg) long double creall(long double complex arg) |
It returns the real part of the complex argument |
| float cimagf(float complex arg) double cimag(double complex arg) long double cimagl(long double complex arg) |
It returns the imaginary part of the complex argument |
| float complex clogf(float complex arg) double complex clog(double complex arg) long double complex cimagl(long double complex arg) |
It returns the imaginary part of the complex argument |
| float complex conjf(float complex arg) double complex conj(double complex arg) long double complex conjl(long double complex arg) |
It returns the conjugate of complex argument |
| float complex cpowf(float complex a, long double complex b) | It returns the complex value of ab |
| float complex csqrtf(float complex arg) double complex csqrt(double complex arg) long double complex csqrtl(long double complex arg) |
It returns the complex square root of argument |
z = 1.3-4.9i
Absolute value = 5.1
Phase Angle = 1.3 radians