{"id":24382,"date":"2021-10-14T09:46:42","date_gmt":"2021-10-14T04:16:42","guid":{"rendered":"https:\/\/python-programs.com\/?p=24382"},"modified":"2021-11-05T21:07:00","modified_gmt":"2021-11-05T15:37:00","slug":"python-program-for-atanh-function","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-program-for-atanh-function\/","title":{"rendered":"Python Program for atanh() Function"},"content":{"rendered":"

In the previous article, we have discussed Python Program for asinh() Function<\/a>
\natanh() Function in Python:<\/strong><\/p>\n

The inverse hyperbolic tangent of a number is returned by the math.atanh() method.<\/p>\n

Note:<\/strong> It should be noted that the parameter passed in math.atanh() must be between -0.99 and 0.99.<\/p>\n

Syntax:<\/strong><\/p>\n

math.atanh(x)<\/pre>\n

Parameters:<\/strong><\/p>\n

x:<\/strong> This is required. It is a\u00a0number between -0.99 and 0.99 that is positive or negative. If x is not a number, a TypeError is returned.<\/p>\n

Return Value:<\/strong><\/p>\n

Returns a float value representing a number’s inverse hyperbolic tangent.<\/p>\n