Open In App

PHP sin( ) Function

Trigonometry is an important part of mathematics and PHP’s math functions provides us with some functions which are very useful for calculations involving trigonometry. The sin()function in PHP is used to find the sine value of a number.
The sine() function returns a float value between -1 and 1, which represents the sine of the angle passed to it as argument. The argument parameter must be in radians.

Syntax:



float sin($value)

Parameters: This function accepts a single parameter value. It is the number whose sine value you want to find. The value of this parameter must be in radians.

Return Value: It returns a floating point number which is the sine value of number passed to it as argument.



Examples:

Input : sin(3) 
Output : 0.14112000805987

Input : sin(-3)
Output : -0.14112000805987

Input : sin(2*M_PI)
Output : 1

Input : sin(0) 
Output : 0

Below programs illustrate sin() function in PHP:

Reference:
http://php.net/manual/en/function.sin.php


Article Tags :