異なる数値の双曲線正弦を返します。
<?phpecho(sinh(3) . "<br>");echo(sinh(-3) . "<br>");echo(sinh(0) . "<br>");echo(sinh(M_PI ) . "<br>");echo(sinh(M_PI_2));?>sinh() 関数は、(exp(number) - exp(-number))/2) として定義される数値の双曲線正弦を返します。
sinh(数値);
パラメータ | 説明する |
---|---|
番号 | 必須。数値を指定してください。 |
戻り値: | 数値の双曲線正弦。 |
---|---|
戻り値の型: | フロート |
PHPのバージョン: | 4.1+ |