PostgreSQL/Math Functions/cot — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 10:14, 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=#