CakeFest 2024: The Official CakePHP Conference

cosh

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

cosh双曲線余弦(ハイパボリックコサイン)

説明

cosh(float $num): float

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

パラメータ

num

処理する引数。

戻り値

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

参考

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

add a note

User Contributed Notes

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