Numpy tan() methodThis function is used to calculate the trigonometric tangent for all the elements of the array passed as the argument. SyntaxParameters
ReturnAn array with trigonometric tangent sins are returned. ExampleOutput: Input Array: [0. 0.78539816 4.71238898 0.52359878] tan Array: [0.00000000e+00 1.00000000e+00 5.44374645e+15 5.77350269e-01] Next TopicNumpy deg2rad() |