522件ヒット
[1-100件を表示]
(0.073秒)
別のキーワード
ライブラリ
- ビルトイン (156)
- benchmark (24)
- matrix (48)
- pathname (72)
-
rubygems
/ config _ file (12) - shell (18)
-
shell
/ command-processor (18) -
shell
/ filter (18) - tempfile (12)
-
webrick
/ httpauth / authenticator (12) -
webrick
/ httpauth / basicauth (12) -
webrick
/ httpauth / htdigest (48) -
webrick
/ httpauth / htpasswd (36) -
webrick
/ httpauth / userdb (36)
クラス
-
Benchmark
:: Tms (24) - Complex (60)
-
File
:: Stat (36) -
Gem
:: ConfigFile (12) - Matrix (48)
- Numeric (60)
- Pathname (72)
- Shell (18)
-
Shell
:: CommandProcessor (18) -
Shell
:: Filter (18) - Tempfile (12)
-
WEBrick
:: HTTPAuth :: BasicAuth (12) -
WEBrick
:: HTTPAuth :: Htdigest (48) -
WEBrick
:: HTTPAuth :: Htpasswd (36)
モジュール
キーワード
- abs (12)
- abs2 (12)
- close (12)
-
delete
_ passwd (24) - each (12)
-
executable
_ real? (42) - format (12)
-
get
_ passwd (36) - imag (12)
- imaginary (12)
- integer? (12)
- magnitude (12)
-
make
_ passwd (12) -
readable
_ real? (42) - real? (36)
- realdirpath (12)
-
really
_ verbose (12) - realm (24)
- realpath (24)
- rect (12)
- rectangular (12)
-
set
_ passwd (36) -
writable
_ real? (42)
検索結果
先頭5件
-
Numeric
# real -> Numeric (18132.0) -
自身を返します。
...す。
Numeric のサブクラスは、このメソッドを適切に再定義しなければなりません。
//emlist[例][ruby]{
10.real # => 10
-10.real # => -10
0.1.real # => 0.1
Rational(2, 3).real # => (2/3)
//}
@see Numeric#imag、Complex#real... -
Complex
# real -> Numeric (18108.0) -
自身の実部を返します。
...自身の実部を返します。
//emlist[例][ruby]{
Complex(3, 2).real # => 3
//}... -
Matrix
# real -> Matrix (18108.0) -
行列の実部を返します。
...行列の実部を返します。
//emlist[例][ruby]{
require 'matrix'
Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]]
# => 1+2i i 0
# 1 2 3
Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]].real
# => 1 0 0
# 1 2 3
//}... -
Benchmark
:: Tms # real -> Float (18102.0) -
実経過時間。
実経過時間。 -
Matrix
# real? -> bool (6136.0) -
行列の全要素が実(Numeric#real?)であれば true を返します。
...全要素が実(Numeric#real?)であれば true を返します。
Complexオブジェクトを要素に持つ場合は虚部が0でも偽を返します。
//emlist[例][ruby]{
require 'matrix'
Matrix[[1, 0], [0, 1]].real? # => true
Matrix[[Complex(0, 1), 0], [0, 1]].real? # => false
# 要素が......実数であっても Complex オブジェクトなら偽を返す。
Matrix[[Complex(1, 0), 0], [0, 1]].real? # => false
//}... -
Numeric
# real? -> bool (6132.0) -
常に true を返します。(Complex またはそのサブクラスではないことを意味します。)
...eric のサブクラスは、このメソッドを適切に再定義しなければなりません。
//emlist[例][ruby]{
10.real? # => true
-10.real? # => true
0.1.real? # => true
Rational(2, 3).real? # => true
//}
@see Numeric#integer?、Complex#real?... -
Pathname
# executable _ real? -> bool (6124.0) -
FileTest.executable_real?(self.to_s) と同じです。
...FileTest.executable_real?(self.to_s) と同じです。
@see FileTest.#executable_real?... -
Pathname
# readable _ real? -> bool (6124.0) -
FileTest.readable_real?(self.to_s) と同じです。
...FileTest.readable_real?(self.to_s) と同じです。
@see FileTest.#readable_real?... -
Pathname
# writable _ real? -> bool (6124.0) -
FileTest.writable_real?(self.to_s) と同じです。
...FileTest.writable_real?(self.to_s) と同じです。
@see FileTest.#writable_real?...