最速Rubyリファレンスマニュアル検索!
すべて(108)
2.1.0(9)
2.2.0(9)
2.3.0(9)
2.4.0(9)
2.5.0(9)
2.6.0(9)
2.7.0(9)
3.0(9)
3.1(9)
3.2(9)
3.3(9)
3.4(9)
108件ヒット
[101-108件を表示]
(0.020秒)
トップページ
>
:
math
>
:
Math
>
:
モジュール関数
>
:log
別のキーワード
math sqrt
_builtin math
bigdecimal/math cos
bigdecimal/math e
ライブラリ
ビルトイン
(108)
キーワード
acosh
(12)
asinh
(12)
atanh
(12)
exp
(12)
lgamma
(12)
log10
(12)
log2
(12)
検索結果
先頭1件
Math
.
#
asinh(x) -> Float
<<
<
1
2
>>
Math
.
#
asinh(x) -> Float
(9014.0)
2.1.0
2.3.0
2.4.0
2.5.0
2.6.0
3.1
3.2
3.3
モジュール関数
x の逆双曲線正弦関数(area hyperbolic sine)の値を返します。
...
ea hyperbolic sine)の値を返します。
=== 定義
asinh(x) =
log
(x + sqrt(x * x + 1))
@param x 実数
@raise TypeError x に数値以外を指定した場合に発生します。
@raise RangeError x に実数以外の数値を指定した場合に発生します。
@see
Math
.#sinh
...
<<
<
1
2
>>