PHP | atan( ) 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. One of such function is atan() function.
The atan() function in PHP is used to find the arc tangent of an argument passed to it which has as a numeric value between -Pi/2 and Pi/2 radians.
We already have discussed about PHP | tan() Function. The atan() function is the complementary function of tan().
Syntax:
float atan($value)
Parameters: This function accepts a single parameter $value. It is the number whose arc tangent 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 arc tangent value of number passed to it as argument.
Examples:
Input : atan(0.50) Output : 0.46364760900081 Input : atan(-0.50) Output : -0.46364760900081 Input : atan(5) Output : 1.373400766945 Input : atan(100) Output : 1.5607966601082
Below programs with different values of $value illustrate the atan() function in PHP:
- Passing 0.50 as a parameter:
<?phpecho(atan(0.50));?>chevron_rightfilter_noneOutput:
0.46364760900081
- Passing -0.50 as a parameter:
<?phpecho(atan(-0.50));?>chevron_rightfilter_noneOutput:
-0.46364760900081
- Passing 5 as a parameter:
<?phpecho(atan(5));?>chevron_rightfilter_noneOutput:
1.373400766945
- Passing 100 as a parameter:
<?phpecho(atan(100));?>chevron_rightfilter_noneOutput:
1.5607966601082
Reference:
http://php.net/manual/en/function.atan.php
Recommended Posts:
- p5.js | atan() Function
- How to call a function that return another function in JavaScript ?
- How to get the function name from within that function using JavaScript ?
- How to get the function name inside a function in PHP ?
- D3.js | d3.set.has() Function
- PHP | Ds\Map map() Function
- PHP | Ds\Map last() Function
- D3.js | d3.set.add() Function
- D3.js | d3.sum() function
- D3.js | d3.mean() function
- D3.js | d3.map.set() Function
- p5.js | nfs() Function
- PHP | Ds\Set xor() Function
- D3.js | d3.max() function
- PHP | Ds\Map put() Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



