504件ヒット
[101-200件を表示]
(0.127秒)
ライブラリ
- ビルトイン (36)
- benchmark (48)
- matrix (12)
- mkmf (12)
- rake (24)
-
rexml
/ document (48) -
rexml
/ sax2listener (24) -
rexml
/ streamlistener (36) -
rubygems
/ source _ info _ cache (24) - shell (54)
-
shell
/ command-processor (48) -
shell
/ filter (48) -
shell
/ system-command (90)
クラス
-
Benchmark
:: Tms (48) -
File
:: Stat (12) -
Gem
:: SourceInfoCache (24) - Matrix (12)
-
REXML
:: DocType (12) -
REXML
:: Entity (12) -
REXML
:: NotationDecl (24) -
Rake
:: Application (12) - Shell (54)
-
Shell
:: CommandProcessor (48) -
Shell
:: Filter (48) -
Shell
:: SystemCommand (90) - SystemCallError (12)
- SystemExit (12)
モジュール
- FileUtils (12)
- Kernel (12)
-
REXML
:: SAX2Listener (24) -
REXML
:: StreamListener (36)
キーワード
- active? (6)
- cat (18)
- command (6)
- cstime (12)
- doctype (24)
- each (6)
- echo (18)
- eigensystem (12)
- entitydecl (12)
- errno (12)
- external (12)
-
external
_ id (12) -
find
_ system _ command (18) - flush (6)
- format (12)
- glob (18)
- input= (6)
- kill (6)
-
latest
_ system _ cache _ file (12) - name (6)
- notationdecl (24)
- notify (12)
- out (6)
- pipe? (12)
- sh (12)
- start (6)
-
start
_ export (6) -
start
_ import (6) - status (12)
- stime (12)
-
super
_ each (6) - system= (12)
-
system
_ cache _ file (12) -
system
_ path (6) -
system
_ path= (6) - tee (18)
- terminate (6)
-
to
_ a (18) - transact (18)
- wait? (6)
- xsystem (12)
検索結果
先頭5件
-
REXML
:: NotationDecl # system=(value) (9202.0) -
システム識別子を変更します。
...システム識別子を変更します。
@param value 設定するシステム識別子... -
Shell
:: CommandProcessor # transact { . . . } -> object (9119.0) -
ブロック中で shell を self として実行します。
...ブロック中で shell を self として実行します。
例:
require 'shell'
Shell.def_system_command("head")
sh = Shell.new
sh.transact{
system("ls", "-l") | head > STDOUT
# transact の中では、
# sh.system("ls", "-l") | sh.head > STDOUT と同じとなる。
}... -
Shell
:: SystemCommand # active? -> bool (9101.0) -
@todo
@todo -
Shell
:: SystemCommand # each(rs = nil) {|line| . . . } (9101.0) -
@todo
...@todo
@param rs... -
Shell
:: SystemCommand # start -> () (9101.0) -
@todo
@todo -
Shell
:: SystemCommand # start _ export (9101.0) -
@todo
@todo -
Shell
:: SystemCommand # start _ import -> () (9101.0) -
@todo
@todo -
Shell
:: SystemCommand # super _ each -> () (9101.0) -
@todo
...@todo
Shell::Filter#each です。... -
Shell
:: SystemCommand # terminate -> () (9101.0) -
@todo
@todo -
Shell
:: SystemCommand # wait? -> bool (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 name 記法名が文字列で渡されます
@param public_or_system "PUBLIC" もしくは "SYSTEM" が渡されます
@param public_id 公開識別子が文字列で渡されます。指定されていない場合はnilが渡されます
@param system_id システム識... -
Kernel
# xsystem(command , opts = nil) -> () (6223.0) -
Kernel.#system と同じですが、コマンドの出力は(標準出力、標準エラー 出力ともに)ログファイルに出力します。ログファイル名は mkmf.log です。
...Kernel.#system と同じですが、コマンドの出力は(標準出力、標準エラー
出力ともに)ログファイルに出力します。ログファイル名は mkmf.log です。
@param command コマンドを指定します。
@param opts オプションを Hash で指定します。......:werror というキーに真を指定すると
@see Kernel.#system... -
Matrix
# eigensystem -> Matrix :: EigenvalueDecomposition (6201.0) -
行列の固有値と左右の固有ベクトルを保持したオブジェクトを返します。
...行列の固有値と左右の固有ベクトルを保持したオブジェクトを返します。
Matrix::EigenvalueDecomposition は to_ary を定義しているため、
多重代入によって3つの行列(右固有ベクトル、固有値行列、左固有ベクトル)
を得ることがで......{
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::EigenvalueDecompos...