378件ヒット
[101-200件を表示]
(0.081秒)
別のキーワード
ライブラリ
- ビルトイン (36)
- benchmark (24)
- matrix (12)
- mkmf (12)
-
net
/ ftp (12) -
rexml
/ document (72) -
rexml
/ sax2listener (24) -
rexml
/ streamlistener (24) -
rubygems
/ source _ info _ cache (24) - shell (24)
-
shell
/ command-processor (12) -
shell
/ filter (12) -
shell
/ system-command (90)
クラス
-
Benchmark
:: Tms (24) -
Gem
:: SourceInfoCache (24) - Matrix (12)
-
Net
:: FTP (12) -
REXML
:: DocType (36) -
REXML
:: Entity (12) -
REXML
:: NotationDecl (24) - Shell (24)
-
Shell
:: CommandProcessor (12) -
Shell
:: Filter (12) -
Shell
:: SystemCommand (90) - SystemCallError (12)
- SystemExit (24)
モジュール
- Kernel (12)
-
REXML
:: SAX2Listener (24) -
REXML
:: StreamListener (24)
キーワード
- active? (6)
- command (6)
- doctype (24)
- each (6)
- eigensystem (12)
- entitydecl (12)
- errno (12)
- external (12)
-
external
_ id (12) -
find
_ system _ command (18) - flush (6)
- format (12)
- input= (6)
- kill (6)
-
latest
_ system _ cache _ file (12) - name (6)
- notationdecl (12)
- notify (12)
- public (12)
- start (6)
-
start
_ export (6) -
start
_ import (6) - status (12)
- success? (12)
-
super
_ each (6) - system= (12)
-
system
_ cache _ file (12) -
system
_ path (6) -
system
_ path= (6) - terminate (6)
-
to
_ a (12) - wait? (6)
- xsystem (12)
検索結果
先頭5件
-
Gem
:: SourceInfoCache # system _ cache _ file -> String (12202.0) -
システムキャッシュファイルの名前を返します。
システムキャッシュファイルの名前を返します。 -
REXML
:: NotationDecl # system=(value) (12202.0) -
システム識別子を変更します。
システム識別子を変更します。
@param value 設定するシステム識別子 -
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 -
Shell
:: SystemCommand # notify(*opts) -> String (9101.0) -
@todo
...@todo
@param opts
@see Shell#notify... -
Shell
:: SystemCommand # notify(*opts) {|message| . . . } -> String (9101.0) -
@todo
...@todo
@param opts
@see Shell#notify... -
Matrix
# eigensystem -> Matrix :: EigenvalueDecomposition (6201.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 ExceptionFor... -
REXML
:: StreamListener # entitydecl(content) -> () (6125.0) -
DTDの実体宣言をパースしたときに呼び出されるコールバックメソッドです。
...//emlist[][ruby]{
require 'rexml/parsers/baseparser'
require 'rexml/parsers/streamparser'
require 'rexml/streamlistener'
xml = <<EOS
<!DOCTYPE root [
<!ENTITY % YN '"Yes"'>
<!ENTITY % YN 'Yes'>
<!ENTITY WhatHeSaid "He said %YN;">
<!ENTITY open-hatch SYSTEM "http://www.textuality.com/boilerplate/Op.......xml">
<!ENTITY open-hatch PUBLIC "-//Textuality//TEXT Standard open-hatch boilerplate//EN" "http://www.textuality.com/boilerplate/OpenHatch.xml">
<!ENTITY hatch-pic SYSTEM "../grafix/OpenHatch.gif" NDATA gif>
]>
<root />
EOS
class Listener
include REXML::StreamListener
def entitydecl(content);......arse
# >> ["YN", "\"Yes\"", "%"]
# >> ["YN", "Yes", "%"]
# >> ["WhatHeSaid", "He said %YN;"]
# >> ["open-hatch", "SYSTEM", "http://www.textuality.com/boilerplate/OpenHatch.xml"]
# >> ["open-hatch", "PUBLIC", "-//Textuality//TEXT Standard open-hatch boilerplate//EN", "http://www.textuality.com/boiler... -
REXML
:: SAX2Listener # doctype(name , pub _ sys , long _ name , uri) -> () (6119.0) -
文書型宣言(DTD)に出会った時に呼び出されるコールバックメソッドです。
...ます。
@param pub_sys "PUBLIC" もしくは "SYSTEM" が渡されます。nilが渡される場合もあります。
@param long_name "SYSTEM" の場合はシステム識別子が、"PUBLIC"の場合は公開識別子が
文字列で渡されます
@param uri "SYSTEM" の場合は nil が... -
REXML
:: StreamListener # doctype(name , pub _ sys , long _ name , uri) -> () (6119.0) -
文書型宣言(DTD)をパースしたときに呼び出されるコールバックメソッドです。
...ソッドです。
pub_sys, long_name, uri はDTDが内部サブセットのみを
利用している場合には nil が渡されます。
@param name 宣言されているルート要素名が文字列で渡されます。
@param pub_sys "PUBLIC" もしくは "SYSTEM" が渡されます。nilが......ます。
@param long_name "SYSTEM" の場合はシステム識別子が、"PUBLIC"の場合は公開識別子が
文字列で渡されます
@param uri "SYSTEM" の場合は nil が、"PUBLIC" の場合はシステム識別子が渡されます
=== 例
<!DOCTYPE me PUBLIC "foo" "bar">
と......いうDTDに対しては
name: "me"
pub_sys: "PUBLIC"
long_name: "foo"
uri: "bar"
という引数が渡されます。
<!DOCTYPE root [
...
というDTDに対しては
name: "root"
pub_sys: nil
long_name: nil
uri: nil
という引数が渡されます。... -
Shell
:: SystemCommand # active? -> bool (6001.0) -
@todo
@todo -
Shell
:: SystemCommand # command -> String (6001.0) -
@todo
@todo
コマンド名を返します。