Source Code:
(back to article)
<?php $number = 1.5; // Get the inverse hyperbolic sine of the number using the asinh() function $inverse_hyperbolic_sine = asinh($number); // Output the inverse hyperbolic sine of the number echo $inverse_hyperbolic_sine; ?>
Result:
Report an issue