
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
ACOSH Function in PHP
The acosh() function returns the inverse hyperbolic cosine of the specified number.
Syntax
acosh(num)
Parameters
num − The number for which we want the inverse hyperbolic cosine.
Return
The acosh() function returns the inverse hyperbolic cosine of a number.
Example
<?php echo(acosh(1) . "<br>"); echo(acosh(1.60) . "<br>"); ?>
Output
0<br>1.0469679150032<br>
Advertisements