PHP atanh() 関数

❮ PHP Math リファレンス

いろいろな数値の逆双曲線 tan を返します:

<?php
echo(atanh(M_PI_4) . "<br>");
echo(atanh(0.50) . "<br>");
echo(atanh(-0.50) . "<br>");
echo(atanh(1) . "<br>");
echo(atanh(-1));
?>
例の実行 »

定義と用法

atanh() 関数は、数値の逆双曲線 tan を返します。


構文

atanh(number);

パラメータ 説明
number 必須。数値を指定する

技術内容
返り値: numberの逆双曲線 tan
返り値の型: Float
PHP バージョン: 4.1+
PHP 変更歴 PHP 5.3:はすべてのプラットフォームで利用可能になりましたs

❮ PHP Math リファレンス