Numpy arctan() methodThis function is used to calculate the inverse tangent of the array elements. SyntaxParameters
ReturnIt returns an array containing the inverse tangent values for all the array elements, x. ExampleOutput: Input array : [0, 0.3, -1] Inverse tan values : [ 0. 0.29145679 -0.78539816] Next TopicNumpy degrees() |