210件ヒット
[1-100件を表示]
(0.097秒)
ライブラリ
- ビルトイン (24)
- benchmark (36)
- matrix (12)
- rake (24)
-
rexml
/ document (24) -
rexml
/ sax2listener (12) -
rexml
/ streamlistener (12) -
rubygems
/ source _ info _ cache (12) - shell (24)
-
shell
/ command-processor (12) -
shell
/ filter (12) -
shell
/ system-command (6)
クラス
-
Benchmark
:: Tms (36) -
File
:: Stat (12) -
Gem
:: SourceInfoCache (12) - Matrix (12)
-
REXML
:: NotationDecl (24) -
Rake
:: Application (12) - Shell (24)
-
Shell
:: CommandProcessor (12) -
Shell
:: Filter (12) -
Shell
:: SystemCommand (6) - SystemExit (12)
モジュール
- FileUtils (12)
-
REXML
:: SAX2Listener (12) -
REXML
:: StreamListener (12)
キーワード
- cat (18)
- cstime (12)
- eigensystem (12)
- format (12)
- glob (18)
-
latest
_ system _ cache _ file (12) - notationdecl (24)
- pipe? (12)
- sh (12)
- status (12)
- stime (12)
- system= (12)
-
system
_ path (6) -
system
_ path= (6) - terminate (6)
検索結果
先頭5件
-
REXML
:: NotationDecl # system -> String | nil (21102.0) -
システム識別子(URI)を返します。
システム識別子(URI)を返します。
宣言がシステム識別子を含まない場合は nil を返します。 -
Shell
# system _ path=(path) (12315.0) -
コマンドサーチパスの配列を返す。
...コマンドサーチパスの配列を返す。
@param path コマンドサーチパスの配列を指定します。
使用例
require 'shell'
sh = Shell.new
sh.system_path = [ "./" ]
p sh.system_path #=> ["./"]... -
Shell
# system _ path -> Array (12215.0) -
コマンドサーチパスの配列を返す。
...コマンドサーチパスの配列を返す。
@param path コマンドサーチパスの配列を指定します。
使用例
require 'shell'
sh = Shell.new
sh.system_path = [ "./" ]
p sh.system_path #=> ["./"]... -
Gem
:: SourceInfoCache # latest _ system _ cache _ file -> String (12202.0) -
最新のシステムキャッシュのファイル名を返します。
最新のシステムキャッシュのファイル名を返します。 -
REXML
:: NotationDecl # system=(value) (9102.0) -
システム識別子を変更します。
システム識別子を変更します。
@param value 設定するシステム識別子 -
Shell
:: SystemCommand # terminate -> () (9101.0) -
@todo
@todo -
SystemExit
# status -> Integer (9101.0) -
例外オブジェクトに保存された終了ステータスを返します。
...します。
終了ステータスは Kernel.#exit や SystemExit.new などで設定されます。
例:
begin
exit 1
rescue SystemExit => err
p err.status # => 1
end
begin
raise SystemExit.new(1, "dummy exit")
rescue SystemExit => err
p err.status # => 1
end... -
REXML
:: SAX2Listener # notationdecl(name , public _ or _ system , public _ id , system _ id) -> () (6321.0) -
DTDの記法宣言に出会ったときに呼び出されるコールバックメソッドです。
...法名が文字列で渡されます
@param public_or_system "PUBLIC" もしくは "SYSTEM" が渡されます
@param public_id 公開識別子が文字列で渡されます。指定されていない場合はnilが渡されます
@param system_id システム識別子が文字列で渡されます... -
Matrix
# eigensystem -> Matrix :: EigenvalueDecomposition (6201.0) -
行列の固有値と左右の固有ベクトルを保持したオブジェクトを返します。
...行列の固有値と左右の固有ベクトルを保持したオブジェクトを返します。
Matrix::EigenvalueDecomposition は to_ary を定義しているため、
多重代入によって3つの行列(右固有ベクトル、固有値行列、左固有ベクトル)
を得ることがで......[ruby]{
require 'matrix'
m = Matrix[[1, 2], [3, 4]]
v, d, v_inv = m.eigensystem
d.diagonal? # => true
v.inv == v_inv # => true
(v * d * v_inv).round(5) == m # => true
//}
@raise ExceptionForMatrix::ErrDimensionMismatch 行列が正方行列でない場合に発生します
@see Matrix::EigenvalueDe... -
Benchmark
:: Tms # format(fmtstr = nil , *args) -> String (6113.0) -
self を指定されたフォーマットで整形して返します。
...返します。
このメソッドは Kernel.#format のようにオブジェクトを整形しますが、
以下の拡張を使用することができます。
: %u
user CPU time で置き換えられます。Benchmark::Tms#utime
: %y
system CPU time で置き換えられます(Mnemonic: y......stem")。Benchmark::Tms#stime
: %U
子プロセスの user CPU time で置き換えられます。Benchmark::Tms#cutime
: %Y
子プロセスの system CPU time で置き換えられます。Benchmark::Tms#cstime
: %t
total CPU time で置き換えられます。Benchmark::Tms#total
: %r
実......:Tms#real
: %n
ラベルで置き換えられます(Mnemonic: n of "*n*ame")。Benchmark::Tms#label
@param fmtstr フォーマット文字列です。
省略された場合は、Benchmark::Tms::FORMAT が使用されます。
@param args フォーマットされる引数です。...