Logo NoVaZuR
Logo NoVaZuR
  1. 5.2. Fonctions

    Table des matières

    • Opérateurs Mathématiques :
      • + -- addition
      • - -- soustraction
      • * -- multiplication
      • / -- division
      • % -- modulo
      • && -- ET logique
      • || -- OU logique
    • Fonctions géométriques :
      • Acos -- arc cosinus
      • acosh -- Arc cosinus hyperbolique
      • Asin -- arc sinus
      • asinh -- Arc sinus hyperbolique
      • Atan2 -- arc tangent de deux variables
      • Atan -- arc tangent
      • atanh -- Arc tangeant hyperbolique
      • Cos -- cosinus
      • cosh -- Cosinus hyperbolic
      • hypot -- hypothénuse = sqrt( num1*num1 + num2*num2)
      • pi -- Retourne la valeur de pi
      • Sin -- Sinus
      • sinh -- Sinyus hyperbolique
      • Tan -- Tangente
      • tanh -- Tangente hyperbolique
    • Fonctions de conversion :
      • base_convert -- Convertit un nombre entre des bases arbitraires.
      • BinDec -- Convertit de binaire en décimal
      • DecBin -- Convertit de décimal en binaire
      • DecHex -- Convertit de décimal en hexadécimal
      • DecOct -- Convertit de décimal en octal
      • deg2rad -- Convertit un nombre de degrés en radians
      • hexdec -- Convertit de hexadécimal en décimal
      • OctDec -- Convertit d'octal en décimal.
      • rad2deg -- Convertit de radians en degrés
    • Fonctions de Test :
      • is_nan -- vrai si val n'est pas un nombre
    • Fonctions statistiques :
      • max -- La plus grande valeur des arguments indiqués.
      • min -- La plus petite valeur des arguments indiqués.
    • Fonctions d'arrondi :
      • Abs -- Valeur absolue
      • Ceil -- Arrondit au nombre supérieur
      • Floor -- Arrondi à l'entier inférieur
      • round -- Arrondi.
    • Fonctions diverses :
      • Exp -- exponentielle
      • fmod -- retourne l'entier correspondant à la division (module) des arguments
      • Log10 -- logarithme en base 10.
      • Log -- Logarithme naturel (népérien)
      • pow -- Puissance
      • Sqrt -- Racine carrée.
    Légende :
    • number = nombre entier ou décimal,
    • float = nombre décimal,
    • int = nombre entier,
    • bool = valeur booléenne (vrai ou faux),
    • string = chaine de caractères alphanumérique,
    • mixed = tableau de valeurs [ex : (0,2,12,38) ou ("bleu","rouge","vert")]
    • void = aucune valeur.

Annonces

Dernière mise à jour le 27/09/2023 à 22:53