title besides title

 

Saturday, November 24, 2012

PHP : Numbers - [2.12] Calculating Trigonometric Functions

2.12.1 Problem

You want to use trigonometric functions, such as sine, cosine, and tangent.

2.12.2 Solution

PHP supports many trigonometric functions natively: sin( ) , cos( ), and tan( ):
$cos = cos(2.1232);
You can also use their inverses: asin( ), acos( ), and atan( ):
$atan = atan(1.2);

2.12.3 Discussion

These functions assume their arguments are in radians, not degrees. (See Section 2.13 if this is a problem.)
The function atan2( ) takes two variables $x and $y, and computes atan($x/$y). However, it always returns the correct sign because it uses both parameters when finding the quadrant of the result.
For secant, cosecant, and cotangent, you should manually calculate the reciprocal values of sin( ), cos( ), and tan( ):
$n = .707;

$secant    = 1 / sin($n);
$cosecant  = 1 / cos($n);
$cotangent = 1 / tan($n);
Starting in PHP 4.1, you can also use hyperbolic functions: sinh( ), cosh( ), and tanh( ), plus, of course, asin( ), cosh( ), and atanh( ). The inverse functions, however, aren't supported on Windows.