ATAN
デスクリプション
x のアークタンジェントを返します。ここで x はラジアン単位です。
Syntax
ATAN(<x>)
パラメータ
| Parameter | デスクリプション |
|---|---|
<x> | atan値を計算する値 |
Return Value
パラメータxのatan値。
Example
select atan(0);
+-----------+
| atan(0.0) |
+-----------+
| 0 |
+-----------+
select atan(2);
+--------------------+
| atan(2.0) |
+--------------------+
| 1.1071487177940904 |
+--------------------+