546件ヒット
[1-100件を表示]
(0.124秒)
ライブラリ
- ビルトイン (72)
- benchmark (36)
- matrix (12)
- mkmf (12)
-
net
/ ftp (12) - rake (24)
-
rexml
/ document (72) -
rexml
/ sax2listener (24) -
rexml
/ streamlistener (36) -
rubygems
/ source _ info _ cache (24) - shell (30)
-
shell
/ command-processor (30) -
shell
/ filter (84) -
shell
/ system-command (66)
クラス
-
Benchmark
:: Tms (36) -
File
:: Stat (12) -
Gem
:: SourceInfoCache (24) - IO (12)
- Matrix (12)
-
Net
:: FTP (12) -
RDoc
:: Options (12) -
REXML
:: DocType (36) -
REXML
:: Entity (12) -
REXML
:: NotationDecl (24) -
Rake
:: Application (12) - Shell (30)
-
Shell
:: CommandProcessor (30) -
Shell
:: Filter (84) -
Shell
:: SystemCommand (66) - String (12)
- SystemCallError (12)
- SystemExit (24)
モジュール
- FileUtils (12)
- Kernel (12)
-
REXML
:: SAX2Listener (24) -
REXML
:: StreamListener (36)
キーワード
- < (6)
- > (6)
- >> (6)
- active? (6)
- cat (18)
-
close
_ on _ exec= (12) - 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) - format (12)
- glob (18)
- input= (6)
- kill (6)
-
latest
_ system _ cache _ file (12) - name (6)
- notationdecl (24)
- notify (12)
-
op
_ dir (12) - out (6)
- pipe? (12)
- public (12)
- sh (12)
-
start
_ import (6) - status (12)
- stime (12)
- success? (12)
- sum (12)
- system= (12)
-
system
_ cache _ file (12) - tee (18)
- terminate (6)
-
to
_ a (6) -
to
_ s (6) - transact (6)
- wait? (6)
- xsystem (12)
- | (6)
検索結果
先頭5件
-
Shell
:: Filter # system(command , *opts) -> Shell :: SystemCommand (21220.0) -
command を実行する.
...で指定します。
@param opts command のオプションを文字列で指定します。複数可。
使用例:
require 'shell'
Shell.verbose = false
sh = Shell.new
print sh.system("ls", "-l")
Shell.def_system_command("head")
sh.system("ls", "-l") | sh.head("-n 3") > STDOUT... -
REXML
:: NotationDecl # system -> String | nil (21202.0) -
システム識別子(URI)を返します。
...システム識別子(URI)を返します。
宣言がシステム識別子を含まない場合は nil を返します。... -
REXML
:: DocType # system -> String | nil (18220.0) -
DTD のシステム識別子を返します。
...nil を返します。
//emlist[][ruby]{
require 'rexml/document'
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
EOS
doctype.system # => "http://www.w3.org/TR/xhtml1/DTD/xhtml1-stri......ct.dtd"
doctype.public # => "-//W3C//DTD XHTML 1.0 Strict//EN"
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE root SYSTEM "foobar">
EOS
doctype.system # => "foobar"
doctype.public # => nil
//}... -
Net
:: FTP # system -> String (18202.0) -
サーバーの OS のタイプを返します。
...返します。
@raise Net::FTPTempError 応答コードが 4yz のときに発生します。
@raise Net::FTPPermError 応答コードが 5yz のときに発生します。
@raise Net::FTPProtoError 応答コードが RFC 的に正しくない場合に発生します。
@raise Net::FTPReplyError... -
Gem
:: SourceInfoCache # latest _ system _ cache _ file -> String (12202.0) -
最新のシステムキャッシュのファイル名を返します。
最新のシステムキャッシュのファイル名を返します。 -
Gem
:: SourceInfoCache # system _ cache _ file -> String (12202.0) -
システムキャッシュファイルの名前を返します。
システムキャッシュファイルの名前を返します。 -
Shell
# find _ system _ command(command) (12202.0) -
@todo
@todo -
Shell
:: CommandProcessor # find _ system _ command(command) (12202.0) -
@todo
@todo -
Shell
:: Filter # find _ system _ command(command) (12202.0) -
@todo
@todo -
Matrix
# eigensystem -> Matrix :: EigenvalueDecomposition (9301.0) -
行列の固有値と左右の固有ベクトルを保持したオブジェクトを返します。
...行列の固有値と左右の固有ベクトルを保持したオブジェクトを返します。
Matrix::EigenvalueDecomposition は to_ary を定義しているため、
多重代入によって3つの行列(右固有ベクトル、固有値行列、左固有ベクトル)
を得ることがで......= W.inverse を満たします。
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 ExceptionF......orMatrix::ErrDimensionMismatch 行列が正方行列でない場合に発生します
@see Matrix::EigenvalueDecomposition... -
Shell
:: SystemCommand # input=(inp) (9201.0) -
@todo
@todo