422件ヒット
[1-100件を表示]
(0.108秒)
ライブラリ
- ビルトイン (144)
- matrix (12)
-
net
/ ftp (20) - pathname (60)
- psych (24)
- rake (12)
-
rubygems
/ ext / builder (12) -
rubygems
/ ext / configure _ builder (12) -
rubygems
/ ext / ext _ conf _ builder (12) -
rubygems
/ ext / rake _ builder (12) -
rubygems
/ installer (12) -
rubygems
/ package / tar _ reader / entry (12) -
rubygems
/ source _ index (12) -
rubygems
/ version (12) - shell (6)
-
shell
/ command-processor (6) -
shell
/ filter (6) -
webrick
/ httpresponse (12) -
webrick
/ httpstatus (12)
クラス
- Complex (48)
- File (12)
-
File
:: Stat (12) -
Gem
:: Ext :: Builder (12) -
Gem
:: Ext :: ConfigureBuilder (12) -
Gem
:: Ext :: ExtConfBuilder (12) -
Gem
:: Ext :: RakeBuilder (12) -
Gem
:: Installer (12) -
Gem
:: Package :: TarReader :: Entry (12) -
Gem
:: SourceIndex (12) -
Gem
:: Version (12) - Matrix (12)
-
Net
:: FTP :: MLSxEntry (20) - Numeric (12)
- Pathname (60)
-
Psych
:: Handler (12) -
Psych
:: Nodes :: Document (12) - Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6) -
WEBrick
:: HTTPResponse (12)
モジュール
-
File
:: Constants (12) - FileTest (12)
- Kernel (36)
-
WEBrick
:: HTTPStatus (12)
キーワード
- Complex (36)
- DIRECT (12)
- build (36)
- children (12)
- correct? (12)
- directory (12)
- directory? (88)
-
directory
_ makable? (10) -
each
_ child (24) -
installed
_ spec _ directories (12) - new (12)
- rectangular (48)
- redirect? (12)
- redirector (12)
-
relative
_ path _ from (12) -
set
_ redirect (12) -
st
_ add _ direct (12) -
start
_ document (12) - unpack (12)
検索結果
先頭5件
-
Complex
. rect(r , i = 0) -> Complex (21213.0) -
実部が r、虚部が i である Complex クラスのオブジェクトを生成します。
...Complex クラスのオブジェクトを生成します。
@param r 生成する複素数の実部。
@param i 生成する複素数の虚部。省略した場合は 0 です。
//emlist[例][ruby]{
Complex.rect(1) # => (1+0i)
Complex.rect(1, 2) # => (1+2i)
Complex.rectangular(1......, 2) # => (1+2i)
//}
@see Kernel.#Complex... -
Complex
# rect -> [Numeric , Numeric] (21125.0) -
実部と虚部を配列にして返します。
...実部と虚部を配列にして返します。
//emlist[例][ruby]{
Complex(3).rect # => [3, 0]
Complex(3.5).rect # => [3.5, 0]
Complex(3, 2).rect # => [3, 2]
//}
@see Numeric#rect... -
Complex
# rectangular -> [Numeric , Numeric] (12225.0) -
実部と虚部を配列にして返します。
...実部と虚部を配列にして返します。
//emlist[例][ruby]{
Complex(3).rect # => [3, 0]
Complex(3.5).rect # => [3.5, 0]
Complex(3, 2).rect # => [3, 2]
//}
@see Numeric#rect... -
Complex
. rectangular(r , i = 0) -> Complex (12213.0) -
実部が r、虚部が i である Complex クラスのオブジェクトを生成します。
...Complex クラスのオブジェクトを生成します。
@param r 生成する複素数の実部。
@param i 生成する複素数の虚部。省略した場合は 0 です。
//emlist[例][ruby]{
Complex.rect(1) # => (1+0i)
Complex.rect(1, 2) # => (1+2i)
Complex.rectangular(1......, 2) # => (1+2i)
//}
@see Kernel.#Complex... -
Gem
:: SourceIndex . installed _ spec _ directories -> [String] (12200.0) -
gemspec ファイルがインストールされているディレクトリのリストを返します。
gemspec ファイルがインストールされているディレクトリのリストを返します。
@see Gem.#path -
Net
:: FTP :: MLSxEntry # directory _ makable? -> bool (12200.0) -
ディレクトリを作成可能ならば true を返します。
ディレクトリを作成可能ならば true を返します。
Net::FTP#mkdir でディレクトリを作成可能かどうかを意味します。 -
Numeric
# rectangular -> [Numeric , Numeric] (9231.0) -
[self, 0] を返します。
...[self, 0] を返します。
//emlist[例][ruby]{
1.rect # => [1, 0]
-1.rect # => [-1, 0]
1.0.rect # => [1.0, 0]
-1.0.rect # => [-1.0, 0]
//}
Numeric のサブクラスは、このメソッドを適切に再定義しなければなりません。
@see Complex#rect... -
Matrix
# rectangular -> [Matrix , Matrix] (9207.0) -
行列を実部と虚部に分解したものを返します。
...行列を実部と虚部に分解したものを返します。
//emlist[例][ruby]{
m.rect == [m.real, m.imag] # ==> true for all matrices m
//}
@see Matrix#imaginary, Matrix#real... -
File
. directory?(path) -> bool (9200.0) -
FileTest.#directory? と同じです。
...FileTest.#directory? と同じです。
@param path パスを表す文字列か IO オブジェクトを指定します。...