Math.atan()傳回反正切值

Javascript的Math.atan()方法:

atan()方法是一個靜態方法,只能藉由Math.atan()來呼叫,atan()方法可以取得輸入參數的反正切值。

atan是一種反三角函數,其定義請參考維基上的反三角函數

Math.atan()的語法:

Math.atan(x)

x:數值(number)。

傳回值:範圍為 -pi/2 ~ pi/2(弧度)。

Math.atan()的範例:

<script type="text/javascript">
document.writeln(Math.atan(-15));
document.writeln("<br/>");
document.writeln(Math.atan(-1));
document.writeln("<br/>");
document.writeln(Math.atan(1));
document.writeln("<br/>");
document.writeln(Math.atan(0.5));
document.writeln("<br/>");
document.writeln(Math.atan("abc"));
document.writeln("<br/>");
document.writeln(Math.atan("0.5"));
</script>

Math.atan()的範例輸出:

-1.5042281630190728
-0.7853981633974483
0.7853981633974483
0.4636476090008061
NaN
0.4636476090008061

關於Math物件的其他屬性與方法,請參考:數學物件 Math

 
 

  按個讚!~支持本站!~

FB推薦載入中  

你可能會有興趣的文章