最速Rubyリファレンスマニュアル検索!
すべて(12)
2.1.0(1)
2.2.0(1)
2.3.0(1)
2.4.0(1)
2.5.0(1)
2.6.0(1)
2.7.0(1)
3.0(1)
3.1(1)
3.2(1)
3.3(1)
3.4(1)
1件ヒット
[1-1件を表示]
(0.010秒)
トップページ
>
:
atan2
>
:
Math
>
:
2.5.0
>
:モジュール
別のキーワード
bigdecimal/math atan
math atan
math atan2
bigmath atan
_builtin atan
ライブラリ
ビルトイン
(1)
検索結果
先頭1件
Math
Math
(114094.0)
2.5.0
モジュール
浮動小数点演算をサポートするモジュールです。
浮動小数点演算をサポートするモジュールです。
Math モジュールにはさまざま数学関数がモジュール関数として定義されています。
モジュール関数は以下のように,モジュールの特異メソッドとして呼び出す使い方と、
モジュールをインクルードしてレシーバーを省略した形で呼び出す使い方の両方ができます。
=== 例
//emlist[][ruby]{
pi = Math.atan2(1, 1)*4;
include Math
pi2 = atan2(1, 1)*4
//}