PHP Doku:: Tangent - function.tan.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzMathematische ErweiterungenMathematische FunktionenMathematische Funktionentan

Ein Service von Reinhard Neidl - Webprogrammierung.

Mathematische Funktionen

<<srand

tanh>>

tan

(PHP 4, PHP 5)

tanTangent

Beschreibung

float tan ( float $arg )

tan() berechnet den Tangens des Winkels arg.

Parameter-Liste

arg

Ein Winkel in Bogenmaß

Rückgabewerte

Der Tangens des Winkels arg

Beispiele

Beispiel #1 tan() Beispiel

<?php

echo tan(M_PI_4); // 1

?>

Siehe auch

  • atan() - Arkustangens
  • atan2() - Arkustangens-Variante mit zwei Parametern
  • sin() - Sinus
  • cos() - Kosinus
  • tanh() - Tangens Hyperbolikus
  • deg2rad() - Rechnet einen Winkel von Grad in Bogenmaß um


2 BenutzerBeiträge:
- Beiträge aktualisieren...
georgedot at gmail dot com
10.09.2009 22:50
Workaround for cotangent function

<?php
//FOR PHP 4
function cot($rad)
{
    return
tan(M_PI_2 - rad2deg($rad));
}

//FOR PHP 3
function cot($rad)
{
    return
tan(M_PI/2 - rad2deg($rad));
}
?>
fformula at gmail dot com
10.04.2006 14:26
To find cotangent you can use
  tan (M_PI/2 - $alfa)



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)