PostgreSQL/Math Functions/atan

Материал из SQL эксперт
Версия от 10:14, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

atan(x): Returns the inverse tangent of x

postgres=# -- atan(x): Returns the inverse tangent of x
postgres=# select atan(tan(1)) AS inverse_example;
 inverse_example
-----------------
               1
(1 row)
postgres=#
postgres=#