+ 1
How do we get the "arcsin" in math module ?
Module in python
5 ответов
+ 2
Well,
arcsin is present in numpy Module, you can't call using math module.....
+ 2
arcsin is numpy function which returns sine inverse of array of values passed in it.....
Please note value should be in radian....
Syntex :
array = []
result = numpy.arcsin(array)
+ 2
My pleasure..... ☺️
+ 1
Thanks a lot
0
Thanks
Please explain further