Thanks to visit codestin.com
Credit goes to www.php.net

update page now

Mathematical Functions

Introduzione

These math functions will only handle values within the range of the int and float types. To handle larger numbers, take a look at the arbitrary precision math or GNU Multiple Precision functions functions.

  • Costanti predefinite
  • RoundingMode — The RoundingMode Enum
  • Math Funzioni
    • abs — Valore assoluto
    • acos — Arco coseno
    • acosh — Inverso del coseno iperbolico
    • asin — Arco seno
    • asinh — Inverso del seno iperbolico
    • atan — Arco tangente
    • atan2 — Arco tangente di due variabili
    • atanh — Inverso della tangente iperbolica
    • base_convert — Converte un numero fra basi arbitrarie
    • bindec — Da binario a decimale
    • ceil — arrotonda le frazioni all'intero superiore
    • cos — Coseno
    • cosh — Coseno iperbolico
    • decbin — Da decimale a binario
    • dechex — Da decimale a esadecimale
    • decoct — Da decimale a ottale
    • deg2rad — Converte il numero dato in gradi nell'equivalente espresso in radianti
    • exp — Calcola l'esponente di e (la base logaritmica naturale o di Nepero)
    • expm1 — Restituisce exp(numero) - 1, computato in maniera tale da essere accurato anche se il valore del numero è vicino a zero
    • fdiv — Divides two numbers, according to IEEE 754
    • floor — Arrotonda le frazioni all'intero inferiore
    • fmod — Returns the floating point remainder (modulo) of the division of the arguments
    • fpow — Raise one number to the power of another, according to IEEE 754
    • hexdec — Da esadecimale a decimale
    • hypot — Restituisce sqrt(num1*num1 + num2*num2)
    • intdiv — Integer division
    • is_finite — Verifica se un numero dato è un numero finito
    • is_infinite — Verifica se un dato valore è infinito
    • is_nan — Verifica se un dato valore non sia un numero
    • log — Logaritmo naturale
    • log10 — Logaritmo base-10
    • log1p — Restituisce log(1 + numero), computato in maniera tale da essere accurato anche se il valore del numero è vicino a zero
    • max — Trova il valore massimo
    • min — Trova il valore minimo
    • octdec — Da ottale a decimale
    • pi — Restituisce il valore di pi
    • pow — Espressione esponenziale
    • rad2deg — Converte un numero in radianti nell'equivalente numero in gradi
    • round — Arrotonda un float
    • sin — Seno
    • sinh — Seno iperbolico
    • sqrt — Radice quadrata
    • tan — Tangente
    • tanh — Tangente iperbolica
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top