PostgreSQL cot() 函数使用指南

PostgreSQL cot() 函数返回指定弧度的余切。

cot() 语法

这里是 PostgreSQL cot() 函数的语法:

cot(number)

参数

number
必需的。 一个用于计算余切的数值,以弧度为单位。

返回值

PostgreSQL cot() 函数返回指定弧度的余切。

如果参数 numberNULLcot() 函数将会返回 NULL

cot() 示例

这里有几个 cot() 函数的示例。

SELECT
    cot(2.5) AS "cot(2.5)",
    cot(0.2) AS "cot(0.2)",
    cot(-0.5) AS "cot(-0.5)",
    cot(-0.2) AS "cot(-0.2)",
    cot(0) AS "cot(0)",
    cot(pi()) AS "cot(pi())";
cot(2.5)  | -1.3386481283041516
cot(0.2)  | 4.933154875586893
cot(-0.5) | -1.830487721712452
cot(-0.2) | -4.933154875586893
cot(0)    | Infinity
cot(pi()) | -8.165619676597685e+15

这里,我们使用了 pi() 函数获取了圆周率 π 的近似值。