UpsMat.ACos

Fonction Optimiser(Invariant, NulAbsorbant) ACos(R : Nul Ou Reel) Retourner Nul Ou Reel;

Fonction Optimiser(Invariant, NulAbsorbant) ACos(D : Nul Ou Decimal) Retourner Nul Ou Decimal;

Fonction Optimiser(Invariant, NulAbsorbant) ACos(C : Nul Ou Complexe) Retourner Nul Ou Complexe;

Description

La fonction ACos retourne l'arc cosinus de la valeur de son paramètre.

Si le paramètre est Nul, alors le résultat est Nul.

Exemple

Principal
/*******/
Variable
/******/

Debut
...
R=ACos(1.0);
/* R a pour valeur 0.0. */
...
Fin Principal

Traduction

---------