360件ヒット
[1-100件を表示]
(0.114秒)
ライブラリ
- ビルトイン (12)
- benchmark (12)
- matrix (12)
- mkmf (12)
-
net
/ ftp (12) - rake (12)
-
rexml
/ document (12) -
rexml
/ sax2listener (24) -
rexml
/ streamlistener (36) - shell (30)
-
shell
/ command-processor (42) -
shell
/ filter (66) -
shell
/ system-command (66)
クラス
-
Benchmark
:: Tms (12) - Matrix (12)
-
Net
:: FTP (12) -
RDoc
:: Options (12) -
REXML
:: NotationDecl (12) - Shell (30)
-
Shell
:: CommandProcessor (42) -
Shell
:: Filter (66) -
Shell
:: SystemCommand (66) - String (12)
モジュール
- FileUtils (12)
- Kernel (12)
-
REXML
:: SAX2Listener (24) -
REXML
:: StreamListener (36)
キーワード
- < (6)
- > (6)
- >> (6)
- cat (18)
- command (6)
- doctype (24)
- each (6)
- echo (18)
- eigensystem (12)
- entitydecl (12)
-
find
_ system _ command (12) - format (12)
- glob (18)
- kill (6)
- name (6)
- notationdecl (24)
- notify (12)
-
op
_ dir (12) - out (12)
- sh (12)
- start (6)
-
start
_ export (6) -
start
_ import (6) - sum (12)
-
super
_ each (6) - system= (12)
-
system
_ path (6) - tee (18)
- terminate (6)
- xsystem (12)
- | (6)
検索結果
先頭5件
-
Shell
:: CommandProcessor # system(command , *opts) -> Shell :: SystemCommand (21232.0) -
command を実行する.
...る.
@param command 実行するコマンドのパスを文字列で指定します。
@param opts command のオプションを文字列で指定します。複数可。
使用例:
require 'shell'
Shell.verbose = false
sh = Shell.new
print sh.system("ls", "-l")
Shell.def_system_comma......nd("head")
sh.system("ls", "-l") | sh.head("-n 3") > STDOUT... -
Shell
:: Filter # system(command , *opts) -> Shell :: SystemCommand (21232.0) -
command を実行する.
...る.
@param command 実行するコマンドのパスを文字列で指定します。
@param opts command のオプションを文字列で指定します。複数可。
使用例:
require 'shell'
Shell.verbose = false
sh = Shell.new
print sh.system("ls", "-l")
Shell.def_system_comma......nd("head")
sh.system("ls", "-l") | sh.head("-n 3") > STDOUT... -
Net
:: FTP # system -> String (18226.0) -
サーバーの OS のタイプを返します。
...ます。
@raise Net::FTPTempError 応答コードが 4yz のときに発生します。
@raise Net::FTPPermError 応答コードが 5yz のときに発生します。
@raise Net::FTPProtoError 応答コードが RFC 的に正しくない場合に発生します。
@raise Net::FTPReplyError 応答... -
Shell
:: SystemCommand # start _ export (15217.0) -
@todo
...@todo... -
Shell
:: SystemCommand # start _ import -> () (15217.0) -
@todo
...@todo... -
Kernel
# xsystem(command , opts = nil) -> () (9141.0) -
Kernel.#system と同じですが、コマンドの出力は(標準出力、標準エラー 出力ともに)ログファイルに出力します。ログファイル名は mkmf.log です。
...Kernel.#system と同じですが、コマンドの出力は(標準出力、標準エラー
出力ともに)ログファイルに出力します。ログファイル名は mkmf.log です。
@param command コマンドを指定します。
@param opts オプションを Hash で指定します。......:werror というキーに真を指定すると
@see Kernel.#system... -
Shell
:: CommandProcessor # find _ system _ command(command) (9118.0) -
@todo
...@todo... -
Shell
:: Filter # find _ system _ command(command) (9118.0) -
@todo
...@todo... -
Shell
:: SystemCommand # start -> () (9117.0) -
@todo
...@todo... -
Shell
:: SystemCommand # super _ each -> () (9117.0) -
@todo
...@todo
Shell::Filter#each です。... -
Shell
:: SystemCommand # terminate -> () (9117.0) -
@todo
...@todo... -
REXML
:: NotationDecl # system=(value) (9108.0) -
システム識別子を変更します。
...システム識別子を変更します。
@param value 設定するシステム識別子... -
Shell
# system _ path -> Array (6221.0) -
コマンドサーチパスの配列を返す。
...コマンドサーチパスの配列を返す。
@param path コマンドサーチパスの配列を指定します。
使用例
require 'shell'
sh = Shell.new
sh.system_path = [ "./" ]
p sh.system_path #=> ["./"]... -
Matrix
# eigensystem -> Matrix :: EigenvalueDecomposition (6213.0) -
行列の固有値と左右の固有ベクトルを保持したオブジェクトを返します。
...行列の固有値と左右の固有ベクトルを保持したオブジェクトを返します。
Matrix::EigenvalueDecomposition は to_ary を定義しているため、
多重代入によって3つの行列(右固有ベクトル、固有値行列、左固有ベクトル)
を得ることがで......erse を満たします。
D のそれぞれの対角成分が行列の固有値です。
//emlist[例][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 ExceptionForMatri......x::ErrDimensionMismatch 行列が正方行列でない場合に発生します
@see Matrix::EigenvalueDecomposition...