CakeFest 2024: The Official CakePHP Conference

sinh

(PHP 4 >= 4.1.0, PHP 5, PHP 7, PHP 8)

sinh双曲線正弦(ハイパボリックサイン)

説明

sinh(float $num): float

num のハイパボリックサインを返します。 これは、(exp($num) - exp(-$num))/2 で定義されます。

パラメータ

num

処理する引数。

戻り値

num のハイパボリックサインを返します。

参考

  • sin() - 正弦(サイン)
  • asinh() - 逆双曲線正弦(アークハイパボリックサイン)
  • cosh() - 双曲線余弦(ハイパボリックコサイン)
  • tanh() - 双曲線正接(ハイパボリックタンジェント)

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top