最速Rubyリファレンスマニュアル検索!
すべて(6)
2.1.0(1)
2.2.0(1)
2.3.0(1)
2.4.0(1)
2.5.0(1)
2.6.0(1)
6件ヒット
[1-6件を表示]
(0.043秒)
トップページ
>
:
param
>
:cbrt!
別のキーワード
net/imap param
win32ole win32ole_param
win32ole_param input?
win32ole_param new
win32ole_param name
ライブラリ
cmath
(6)
モジュール
CMath
(6)
検索結果
先頭1件
CMath
.
#
cbrt!(x) -> Float
CMath
.
#
cbrt!(x) -> Float
(18106.0)
2.1.0
2.2.0
2.3.0
2.4.0
2.5.0
2.6.0
モジュール関数
実数 x の立方根を返します。Math.#cbrt のエイリアスです。
...
リアスです。
@
param
x 実数
@raise TypeError x に数値以外を指定した場合に発生します。
@raise RangeError x に実数以外の数値を指定した場合に発生します。
//emlist[例][ruby]{
require "cmath"
CMath.
cbrt!
(8.0)# => 2.0
CMath.
cbrt!
(-8.0) # => -2.0
//}
@s
...
CMath