_atanh
ハイパボリックアークタンジェント (双曲線逆正接) を算出します。
引数 | 型 | 初期値 | 説明 |
---|---|---|---|
| |||
$x | Number | 対象となる数値 |
双曲線逆正接
@debug _atanh(-2);
// => nan
@debug _atanh(-1);
// => -inf
@debug _atanh(0);
// => 0
@debug _atanh(.5);
// => 0.54931
@debug _atanh(1);
// => inf
@debug _atanh(2);
// => nan