SINH
描述
返回x
的双曲正弦值。
语法
SINH(<x>)
参数
参数 | 描述 |
---|---|
<x> | 需要计算双曲正弦值的数值 |
返回值
参数x
的双曲正弦值。
示例
select sinh(0.0);
+-----------+
| sinh(0.0) |
+-----------+
| 0 |
+-----------+
select sinh(1.0);
+--------------------+
| sinh(1.0) |
+--------------------+
| 1.1752011936438014 |
+--------------------+
select sinh(-1.0);
+---------------------+
| sinh(-1.0) |
+---------------------+
| -1.1752011936438014 |
+---------------------+