PostgreSQL/Math Functions/cos — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 10:14, 26 мая 2010
cos(x): Returns the cosine of x
postgres=# -- cos(x): Returns the cosine of x
postgres=# SELECT cos(pi()) AS cos_pi, cos(0) AS cos_zero;
cos_pi | cos_zero
--------+----------
-1 | 1
(1 row)
postgres=#