Numpy arcsin() methodThis function is used to calculate the inverse sin of the array elements. SyntaxParameters
ReturnIt returns an array containing the inverse sin for all the array elements, x. ExampleOutput: Input array : [0, 0.3, -1] Inverse Sine values : [ 0. 0.30469265 -1.57079633] Next TopicNumpy arctan() |