PostgreSQL/Math Functions/cot — различия между версиями

Материал из SQL эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 13:45, 26 мая 2010

cot(x): Returns the cotangent of x

postgres=# -- cot(x): Returns the cotangent of x
postgres=# SELECT cot(1), cot(-1);
        cot        |        cot
-------------------+--------------------
 0.642092615934331 | -0.642092615934331
(1 row)
postgres=#
postgres=#