zion - cimag
Nom
cimag, cimagf, cimagl - Obtenir la partie imaginaire d'un nombre complexe.
Résumé
#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
cabs (3), creal (3), complex (5)
Traduction
Christophe Blaess, 2003.
Poster un commentaire