man cimag (Fonctions bibliothèques) - Obtenir la partie imaginaire d'un nombre complexe.
NOM
cimag, cimagf, cimagl - Obtenir la partie imaginaire d'un nombre complexe.
SYNOPSIS
#include <complex.h> double cimag(double complex z); float cimagf(float double complex z); long double cimagl(long double complex z);
DESCRIPTION
La fonction cimag() renvoie la partie imaginaire du nombre complexe z.
On a z = creal(z) + I*cimag(z).
NOTE
Le compilateur gcc supporte également la macro __imag__, c'est une extension GNU.
CONFORMITÉ
C99
VOIR AUSSI
TRADUCTION
Christophe Blaess, 2003.