Math.sin
正弦を得る
構文
Math.sin(x)
引数
x=数値例文
<html>
<head>
<title>Math.sin</title>
</head>
<body>
<!--正弦を得るのサンプル-->
<script type="text/javascript">
document.write('3の正弦(sin)は'+Math.sin(3)+"です<br>");
document.write('-3の正弦(sin)は'+Math.sin(-3)+"です<br>");
document.write('0の正弦(sin)は'+Math.sin(0)+"です<br>");
document.write('PIの正弦(sin)は'+Math.sin(Math.PI)+"です<br>");
document.write('PI/2の正弦(sin)は'+Math.sin(Math.PI/2));
</script>
</body>
</html>
関連記事
- Math.tan
- Math.atan2
- Math.sqrt
- Math.round
- Math.random
- Math.pow
- Math.min
- Math.max
- Math.log
- Math.floor
- Math.exp
- Math.cos
- Math.ceil
- Math.atan
- Math.asin
- Math.acos
- Math.abs
- Math.SQRT2
- Math.SQRT1_2
- Math.PI
- Math.LOG2E
- Math.LOG10E
- Math.LN2
- Math.LN10
- Math.E
スポンサーリンク







