tan

(PHP 4, PHP 5)

tanTangent

Beskrivelse

float tan ( float $arg )

tan() returns the tangent of the arg parameter. The arg parameter is in radians.

Parametre

arg

The argument to process in radians

Returnerings Værdier

The tangent of arg

Eksempler

Eksempel #1 tan() example

<?php

echo tan(M_PI_4); // 1

?>

Se også

add a note add a note

User Contributed Notes

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