javascript 三角関数atan(アークタンジェント)の値を計算する
- 作成日 2022.09.28
- 更新日 2022.10.14
- javascript
- javascript
javascriptでmathオブジェクトのatanメソッドを使用して三角関数atan(アークタンジェント)の値を計算するサンプルコードを記述してます。
環境
- OS windows11 home
- Apache 2.4.43
- ブラウザ chrome 106.0.5249.103
atanメソッド使い方
atanメソッドを使うと三角関数atan(アークタンジェント)の計算を行うことが可能です。
Math.atan(ラジアン単位の角度)
角度の単位はラジアンなので、30度は
(30/360)*(2*Math.PI)で
30 * (Math.PI / 180)となります。
Math.PIは円周率(π)を返してくれます
atanメソッド使い方
console.log( Math.atan(15 * (Math.PI / 180)) );
// 結果 0.25605276998075555
console.log( Math.atan(30 * (Math.PI / 180)) );
// 結果 0.48234790710102493
サンプルコード
以下は、テキストフォームに入力した数値(ラジアン値)のatan(アークタンジェント)の値を計算して出力するだけのサンプルコードとなります。
※cssには「tailwind」を使用してます。関数はアロー関数を使用してます。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>mebeeサンプル</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<script>
window.onload = () => {
btn.onclick = () => {
foo.innerHTML = Math.atan(Number(txt.value) * (Math.PI / 180))
}
}
</script>
<body>
<div class="container mx-auto my-56 w-64 px-4">
<div id="sample" class="flex flex-col justify-center">
<h1 class="font-semibold text-blue-500 text-lg mr-auto">実行結果</h1>
<p id="foo" class="font-semibold text-lg mr-auto"></p>
<input
class="mb-2 shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
id="txt" type="text">
<button id="btn"
class="mb-2 md:mb-0 bg-transparent hover:bg-yellow-500 text-yellow-700 font-semibold hover:text-white py-2 px-4 border border-yellow-500 hover:border-transparent rounded">
実行
</button>
</div>
</div>
</body>
</html>
atan(アークタンジェント)の値が計算されて出力されていることが確認できます。
-
前の記事
javascript 三角関数asin(アークサイン)の値を計算する 2022.09.28
-
次の記事
Oracle Database パッケージを再コンパイルする 2022.09.28
コメントを書く