220件ヒット
[1-100件を表示]
(0.132秒)
ライブラリ
- ビルトイン (36)
- matrix (24)
-
net
/ ftp (10) - pathname (60)
- psych (36)
-
rubygems
/ indexer (12) -
rubygems
/ installer (12) -
rubygems
/ package / tar _ reader / entry (12) -
shell
/ command-processor (6) -
webrick
/ httpresponse (12)
クラス
- Complex (12)
-
File
:: Stat (12) -
Gem
:: Indexer (12) -
Gem
:: Installer (12) -
Gem
:: Package :: TarReader :: Entry (12) - Matrix (24)
-
Net
:: FTP :: MLSxEntry (10) - Numeric (12)
- Pathname (60)
-
Psych
:: Handler (12) -
Psych
:: Nodes :: Document (24) -
Shell
:: CommandProcessor (6) -
WEBrick
:: HTTPResponse (12)
キーワード
- children (12)
- directory? (42)
-
directory
_ makable? (10) -
each
_ child (24) -
make
_ temp _ directories (12) - rectangular (36)
-
relative
_ path _ from (12) -
set
_ redirect (12) -
start
_ document (12) -
tag
_ directives (12) -
tag
_ directives= (12) - unpack (12)
検索結果
先頭5件
-
Matrix
# rect -> [Matrix , Matrix] (21308.0) -
行列を実部と虚部に分解したものを返します。
...行列を実部と虚部に分解したものを返します。
//emlist[例][ruby]{
m.rect == [m.real, m.imag] # ==> true for all matrices m
//}
@see Matrix#imaginary, Matrix#real... -
Pathname
# relative _ path _ from(base _ directory) -> Pathname (15401.0) -
base_directory から self への相対パスを求め、その内容の新しい Pathname オブジェクトを生成して返します。
...base_directory から self への相対パスを求め、その内容の新しい Pathname
オブジェクトを生成して返します。
パス名の解決は文字列操作によって行われ、ファイルシステムをアクセス
しません。
self が相対パスなら base_directory......lf が絶対パスなら
base_directory も絶対パスでなければなりません。
@param base_directory ベースディレクトリを表す Pathname オブジェクトを指定します。
@raise ArgumentError Windows上でドライブが違うなど、base_directory から self への相......対パスが求められないときに例外が発生します。
//emlist[例][ruby]{
require 'pathname'
path = Pathname.new("/tmp/foo")
base = Pathname.new("/tmp")
path.relative_path_from(base) # => #<Pathname:foo>
//}... -
Psych
:: Nodes :: Document # tag _ directives=(tags) (12301.0) -
tag directive の配列を設定します。
...tag directive の配列を設定します。
@param tags 設定する tag directive の配列
@see Psych::Nodes::Document#tag_directives,
Psych::Nodes::Document.new... -
Matrix
# rectangular -> [Matrix , Matrix] (12208.0) -
行列を実部と虚部に分解したものを返します。
...行列を実部と虚部に分解したものを返します。
//emlist[例][ruby]{
m.rect == [m.real, m.imag] # ==> true for all matrices m
//}
@see Matrix#imaginary, Matrix#real... -
Gem
:: Indexer # make _ temp _ directories (12201.0) -
一時的に使用するディレクトリを作成します。
一時的に使用するディレクトリを作成します。 -
Net
:: FTP :: MLSxEntry # directory _ makable? -> bool (12201.0) -
ディレクトリを作成可能ならば true を返します。
ディレクトリを作成可能ならば true を返します。
Net::FTP#mkdir でディレクトリを作成可能かどうかを意味します。 -
Psych
:: Nodes :: Document # tag _ directives -> [[String , String]] (12201.0) -
tag directive の配列を返します。
...tag directive の配列を返します。
@see Psych::Nodes::Document#tag_directives=,
Psych::Nodes::Document.new... -
Numeric
# rectangular -> [Numeric , Numeric] (9232.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... -
Complex
# rectangular -> [Numeric , Numeric] (9226.0) -
実部と虚部を配列にして返します。
...実部と虚部を配列にして返します。
//emlist[例][ruby]{
Complex(3).rect # => [3, 0]
Complex(3.5).rect # => [3.5, 0]
Complex(3, 2).rect # => [3, 2]
//}
@see Numeric#rect...