Python - cmath.atanh() function Last Updated : 28 May, 2020 Comments Improve Suggest changes Like Article Like Report cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.atanh() function returns the inverse hyperbolic arctangent value of a complex number. The value passed in this function can be int, float, and complex numbers. Syntax: cmath.atanh(x) Parameter:This method accepts only single parameters. x :This parameter is the value to be passed to atanh() Returns:This function returns the inverse hyperbolic arctangent value of a complex number. Below examples illustrate the use of above function: Example #1 : In this example we can see that by using cmath.atanh() method, we are able to get the values of inverse hyperbolic arctangent by passing any value to it. Python3 # Python code to implement # the atanh()function # importing "cmath" # for mathematical operations import cmath # using cmath.atanh() method val = cmath.atanh(3) print(val) Output: (0.34657359027997264+1.5707963267948966j) Example 2: Python3 # Python code to implement # the atanh()function # importing "cmath" # for mathematical operations import cmath # using cmath.atanh() method val = cmath.atanh(2 + 5j) print(val) Output: (0.06706599664866984+1.399284356584545j) Comment More infoAdvertise with us Next Article Python - cmath.atanh() function S SHUBHAMSINGH10 Follow Improve Article Tags : Python Python math-library-functions Python Cmath-library Practice Tags : python Similar Reads Python - cmath.atan() function cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.atan() function returns the arctangent value of a complex number. The value passed in this function can be int, float, and complex numbers. Syntax: cmath.atan(x) Parameter:This method 1 min read Python - cmath.asinh() function cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.asinh() function returns the inverse hyperbolic value of a complex number. The value passed in this function can be int, float, and complex numbers. Syntax: cmath.asinh(x) Parameter:T 1 min read Python - cmath.asin() function cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.asin() function returns the arc sine value of a complex number. The value passed in this function can be int, float, and complex numbers. Syntax: cmath.asin(x) Parameter:This method a 1 min read Python - cmath.acosh() function cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.acosh() function returns the inverse hyperbolic cosine value of a complex number. The value passed in this function can be int, float, and complex numbers. Syntax: cmath.acosh(x) Para 1 min read Python - cmath.acos() function cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.acos() function returns the arc cosine value of a complex number. The value passed in this function can be int, float, and complex numbers. Syntax: cmath.acos(x) Parameter:This method 1 min read Like