Numpy arctanh()

This function is used to calculate the hyperbolic inverse tangent of the array elements.

Syntax

Parameters

  1. array: Array elements (in radians) whose hyperbolic inverse tangent values are to be calculated.
  2. out: shape of the output array.

Return

An array containing hyperbolic inverse tangent values are returned.

Example

Output:

Input Array: [0.  0.2 0.5 0.3]

arctanh Array: [0.         0.20273255 0.54930614 0.3095196 ]

Next TopicNumpy ceil()




Latest Courses