, Arpad Ray * @link http://php.net/function.atanh * @author Arpad Ray * @version $Revision: 1.2 $ * @since PHP 5 * @require PHP 3.0.0 */ function php_compat_atanh($n) { return 0.5 * (ln(1 + $n) - ln(1 - $n)); } if (!function_exists('atanh')) { function atanh($n) { return php_compat_atanh($n); } }