cimag(), cimagf(), cimagl()

Compute the imaginary part of a complex number

Synopsis:

#include <complex.h>

double cimag(double complex z);

float cimagf(float complex z);

long double cimagl(long double complex z);

Arguments:

z
The complex value that you want to get the imaginary part of.

Library:

libm

Use the -l m option to qcc to link against this library.

Description:

These functions compute the imaginary part of the complex number specified by z.

Returns:

The imaginary part of z.

Classification:

ANSI, POSIX 1003.1

Safety:  
Cancellation point No
Interrupt handler No
Signal handler No
Thread Yes