Math.sin




' Math.sin(x) restituisce il seno (un valore compreso tra -1 e 1) dell'angolo x (indicato in radianti).

' Se si desidera utilizzare i gradi anziche' i radianti, e' necessario convertire i gradi in radianti:

' Angolo in radianti = Angolo in gradi x PI / 180.


https://www.w3schools.com/js/tryit.asp?filename=tryjs_math_sin

<!DOCTYPE html>
<html>
<body>

<h2>JavaScript Math.sin()</h2>

<p>Math.sin(x) returns the sin of x (given in radians):</p>
<p>Angle in radians = (angle in degrees) * PI / 180.</p>

<p id="demo"></p>

<script>
document.getElementById("demo").innerHTML =
"The sine value of 90 degrees is " + Math.sin(90 * Math.PI / 180);
</script>

</body>
</html>










( mathsin.html )- by Paolo Puglisi - Modifica del 17/12/2023