Source Code:
(back to article)
<?php $number = 0.5; // Get the inverse hyperbolic tangent of the number using the atanh() function $inverse_hyperbolic_tangent = atanh($number); // Output the inverse hyperbolic tangent of the number echo $inverse_hyperbolic_tangent; ?>
Result:
Report an issue