Mathc complexes/Fichiers h : wzr

Bibliothèque

Installer ce fichier dans votre répertoire de travail.

wzr.h
/* ------------------------------------ */
/*  Save as :   wzr.h                   */
/* ------------------------------------ */
/* ------------------------------------ */
nb_Z r_Z(
int maxn)
{
nb_Z z;

    z.r  = r_I (maxn);
    z.i  = r_I (maxn);

return(z);
}
/* ------------------------------------ */
/* ------------------------------------ */
nb_Z rE_Z(
int      maxn,
double   E
)
{
nb_Z z;

    z.r  = r_I (maxn)*E;
    z.i  = r_I (maxn)*E;

return(z);
}
/* ------------------------------------ */
/* ------------------------------------ */

La fonction r_Z(); créé et donne un complexe avec des valeurs aléatoires.