Du bist hier: Tips » Scripte » PHP
PHP
Referenzliste

acos

Mathematische-Funktionen

    Befehl:
float acos ( float $arg )


    Parameter-Liste:
NameBeschreibung
argDer zu verarbeitende Wert.

    Rückgabewerte:
Der Arkuskosinus von arg in Bogenmass.

    Beschreibung:
Berechnet den Arkuskosinus des Parameters arg. acos() ist die Komplementärfunktion zu cos(), d.h. innerhalb des Wertebereichs von acos() gilt a==cos(acos(a)).


    Aktiv in Version:
(PHP 4, PHP 5, PHP 7)

    Siehe auch:
•  cos()
Kosinus
 
•  acosh()
Areakosinus Hyperbolikus
 
•  asin()
Arkussinus
 
•  atan()
Arkustangens
 

acos() - Beispiel:


Eingabe:
<?PHP
echo acos(1.00);
echo '<br>';
echo acos(0.52);
echo '<br>';
echo acos(-1.00);
echo '<br>';
echo acos(-1.01);
echo '<br>';
echo rad2deg(acos(0.50)) . '�';
?>


Ausgabe:
0
1.023945376099
3.1415926535898
NAN
60�
Mathematische-Funktionen