Domanda [RISOLTO] Calcolare sin^-1 di un angolo

Stato
Discussione chiusa ad ulteriori risposte.

Andrea1618

Utente Silver
24 Maggio 2017
137
18
12
59
In python 2.7.13 come faccio a calcolare l' ampiezza di un angolo conoscendone solo il seno? E con coseno e tangente?
 
math.acos(x) - Return the arc cosine of x, in radians.
math.asin(x) - Return the arc sine of x, in radians.
math.atan(x) - Return the arc tangent of x, in radians.
[...]
math.degrees(x) - Convert angle x from radians to degrees.
math.radians(x) - Convert angle x from degrees to radians.
Dalla doc: https://docs.python.org/2/library/math.html

Usa py3 se non hai motivi di mantenere retrocompatibilità con qualcosa: il mondo deve pur evolversi prima o poi.
 
Stato
Discussione chiusa ad ulteriori risposte.