Mathematical Functions

  • Introduzione
  • Installazione/Configurazione
  • Costanti predefinite
  • Math Funzioni
    • abs — Valore assoluto
    • acos — Arco coseno
    • acosh — Inverso del coseno iperbolico
    • asin — Arco seno
    • asinh — Inverso del seno iperbolico
    • atan2 — Arco tangente di due variabili
    • atan — Arco tangente
    • 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
    • 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
    • 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
    • log — Logaritmo naturale
    • 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 add a note

User Contributed Notes 1 note

up
-130
Hayley Watson
11 years ago
Provides a function to rescale numbers so that the range [a,b] fits into the range [c,d].

<?php
function rescale($ab, $cd)
{
    list(
$a, $b) = $ab;
    list(
$c, $d) = $cd;
    if(
$a == $b)
    {
       
trigger_error("Invalid scale", E_USER_WARNING);
        return
false;
    }
   
$o = ($b * $c - $a * $d) / ($b - $a);
   
$s = ($d - $c) / ($b - $a);
    return function(
$x)use($o, $s)
    {
        return
$s * $x + $o;
    };
}

$fahr2celsius = rescale([32, 212], [0, 100]);
echo 
$fahr2celsius(98.6); // 37°C

?>
To Top