VOOZH about

URL: https://www.geeksforgeeks.org/python/python-math-asinh-function/

⇱ Python - math.asinh() function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python - math.asinh() function

Last Updated : 28 May, 2020
Math module contains a number of functions which is used for mathematical operations. The math.asinh() function returns the hyperbolic arc sine value of a number.
Syntax: math.asinh(x) Parameter:This method accepts only single parameters.
  • x :This parameter is the value to be passed to asinh()
Returns:This function returns the hyperbolic arc sine value of a number.
Below examples illustrate the use of above function: Example 1: Output:
3.5272244561999657
2.4237920435875173
6.194409556009931
-8.837826385072708
Example 2:
Output:
Input_Array : 
 [-0.14159265, -0.57039399, -0.28559933, 0.28559933, 0.57039399, 0.94159265]

Output_Array : 
 [-0.14112374861052449, -0.5432727660031201, -0.28185270483975433, 0.28185270483975433, 0.5432727660031201, 0.8394645626112472]
👁 Image
Comment