745件ヒット
[701-745件を表示]
(0.097秒)
別のキーワード
ライブラリ
- ビルトイン (132)
-
cgi
/ html (24) -
irb
/ cmd / help (12) - matrix (288)
-
minitest
/ spec (1) -
net
/ http (72) -
net
/ imap (72) -
rubygems
/ command _ manager (12) -
rubygems
/ package / tar _ reader (12) -
rubygems
/ package / tar _ reader / entry (12) - stringio (12)
-
webrick
/ httpservlet / abstract (12) -
webrick
/ httpservlet / cgihandler (12) -
webrick
/ httpservlet / erbhandler (12) -
webrick
/ httpservlet / filehandler (12) -
webrick
/ httpservlet / prochandler (12) -
win32
/ registry (12) - zlib (24)
クラス
- Array (12)
- Dir (48)
-
Gem
:: CommandManager (12) -
Gem
:: Package :: TarReader (12) -
Gem
:: Package :: TarReader :: Entry (12) - IO (12)
-
IRB
:: ExtendCommand :: Help (12) - MatchData (12)
- Matrix (48)
-
Matrix
:: EigenvalueDecomposition (120) -
Matrix
:: LUPDecomposition (120) - Module (1)
-
Net
:: HTTP (72) -
Net
:: IMAP :: BodyTypeBasic (12) -
Net
:: IMAP :: BodyTypeMessage (12) -
Net
:: IMAP :: BodyTypeMultipart (12) -
Net
:: IMAP :: BodyTypeText (12) -
Net
:: IMAP :: ContentDisposition (24) - Regexp (12)
- String (36)
- StringIO (12)
-
WEBrick
:: HTTPServlet :: AbstractServlet (12) -
WEBrick
:: HTTPServlet :: CGIHandler (12) -
WEBrick
:: HTTPServlet :: ERBHandler (12) -
WEBrick
:: HTTPServlet :: FileHandler (12) -
WEBrick
:: HTTPServlet :: ProcHandler (12) -
Win32
:: Registry (12) -
Zlib
:: GzipReader (24)
モジュール
-
CGI
:: HtmlExtension (24)
キーワード
-
delete
_ at (12) - det (12)
- determinant (12)
- disposition (60)
-
do
_ POST (60) -
dsp
_ type (12) - eigen (12)
- eigensystem (12)
-
eigenvalue
_ matrix (12) - eigenvalues (12)
-
eigenvector
_ matrix (12) -
eigenvector
_ matrix _ inv (12) - eigenvectors (12)
- execute (12)
-
find
_ command _ possibilities (12) - form (24)
- index (12)
-
infect
_ with _ assertions (1) - l (12)
- lup (12)
-
lup
_ decomposition (12) - match (24)
- p (12)
- param (12)
- pivots (12)
- pos= (12)
- post (24)
- post2 (24)
-
post
_ match (12) - reopen (12)
-
request
_ post (24) - rewind (24)
- rindex (12)
- seek (12)
- singular? (12)
- solve (12)
- tell (24)
-
to
_ a (24) -
to
_ ary (24) - u (12)
- v (12)
-
v
_ inv (12)
検索結果
先頭4件
- CGI
:: HtmlExtension # form(method = "post" , action = nil , enctype = "application / x-www-form-urlencoded") -> String - CGI
:: HtmlExtension # form(method = "post" , action = nil , enctype = "application / x-www-form-urlencoded") { . . . } -> String - Matrix
# lup -> Matrix :: LUPDecomposition - IO
# reopen(path , mode) -> self
-
CGI
:: HtmlExtension # form(method = "post" , action = nil , enctype = "application / x-www-form-urlencoded") -> String (201.0) -
form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。
...thod method 属性の値として "get" か "post" を指定します。
@param action action 属性の値を指定します。デフォルトは現在の CGI スクリプト名です。
@param enctype enctype 属性の値を指定します。デフォルトは "application/x-www-form-urlencoded"......METHOD="post" ENCTYPE="application/x-www-form-urlencoded">string</FORM>
form("get"){ "string" }
# <FORM METHOD="get" ENCTYPE="application/x-www-form-urlencoded">string</FORM>
form("get", "url"){ "string" }
# <FORM METHOD="get" ACTION="url" ENCTYPE="application/x-www-form-urlencoded">st... -
CGI
:: HtmlExtension # form(method = "post" , action = nil , enctype = "application / x-www-form-urlencoded") { . . . } -> String (201.0) -
form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。
...thod method 属性の値として "get" か "post" を指定します。
@param action action 属性の値を指定します。デフォルトは現在の CGI スクリプト名です。
@param enctype enctype 属性の値を指定します。デフォルトは "application/x-www-form-urlencoded"......METHOD="post" ENCTYPE="application/x-www-form-urlencoded">string</FORM>
form("get"){ "string" }
# <FORM METHOD="get" ENCTYPE="application/x-www-form-urlencoded">string</FORM>
form("get", "url"){ "string" }
# <FORM METHOD="get" ACTION="url" ENCTYPE="application/x-www-form-urlencoded">st... -
Matrix
# lup -> Matrix :: LUPDecomposition (201.0) -
行列の LUP 分解を保持したオブジェクトを返します。
...行列の LUP 分解を保持したオブジェクトを返します。
Matrix::LUPDecomposition は to_ary を定義しているため、
多重代入によって3つの行列(下三角行列、上三角行列、置換行列)
を得ることができます。これを [L, U, P] と書くと、
L*U......します。
//emlist[例][ruby]{
require 'matrix'
a = Matrix[[1, 2], [3, 4]]
l, u, p = a.lup
l.lower_triangular? # => true
u.upper_triangular? # => true
p.permutation? # => true
l * u == p * a # => true
a.lup.solve([2, 5]) # => Vector[(1/1), (1/2)]
//}
@see Matrix::LUPDecomposition... -
IO
# reopen(path , mode) -> self (108.0) -
path で指定されたファイルにストリームを繋ぎ換えます。
...二引数を省略したとき self のモードをそのまま引き継ぎます。
IO#pos, IO#lineno などはリセットされます。
@param path パスを表す文字列を指定します。
@param mode パスを開く際のモードを文字列で指定します。
@raise Errno::EXXX 失......estfile", "a+")
f2 = File.new("testfile")
f1.print("This is line three\n")
f2.readlines # => ["This is line one\n", "This is line two\n"]
f1.close
f2.reopen("testfile", "r") # => #<File:testfile>
f2.readlines # => ["This is line one\n", "This is line two\n", "This is l...