Numpy arctanh()This function is used to calculate the hyperbolic inverse tangent of the array elements. SyntaxParameters
ReturnAn array containing hyperbolic inverse tangent values are returned. ExampleOutput: Input Array: [0. 0.2 0.5 0.3] arctanh Array: [0. 0.20273255 0.54930614 0.3095196 ] Next TopicNumpy ceil() |