るりまサーチ

最速Rubyリファレンスマニュアル検索!
487件ヒット [1-100件を表示] (0.111秒)
トップページ > クエリ:c[x] > クエリ:position[x]

別のキーワード

  1. _builtin to_c
  2. etc sc_2_c_dev
  3. etc sc_2_c_bind
  4. tracer display_c_call
  5. tracer display_c_call=

検索結果

<< 1 2 3 ... > >>

REXML::ParseException#position -> Integer (21101.0)

パースエラーが起きた(XML上の)場所を先頭からのバイト数で返します。

パースエラーが起きた(XML上の)場所を先頭からのバイト数で返します。

Matrix::EigenvalueDecomposition (12000.0)

行列の固有分解の情報を保持するクラスです。

行列の固有分解の情報を保持するクラスです。

Matrix#eigensystem の返り値のクラスです。

Matrix::LUPDecomposition (12000.0)

行列のLUP分解の情報を保持するクラスです。

...行列のLUP分解の情報を保持するクラスです。

Matrix#lup_decomposition の返り値のクラスです。...

Net::IMAP::ContentDisposition (12000.0)

1806, 2183 で定義されている MIME の Content-Disposition フィールドを表すクラスです。

...1806, 2183 で定義されている MIME の
C
ontent-Disposition フィールドを表すクラスです。...

Net::IMAP::BodyTypeBasic#disposition -> Net::IMAP::ContentDisposition | nil (9306.0)

Content-Dispotition の値を返します。

...Content-Dispotition の値を返します。

Net::IMAP::ContentDisposition オブジェクトを返します。

@see 1806, 2183...

絞り込み条件を変える

Matrix::EigenvalueDecomposition#eigenvectors -> [Vector] (9200.0)

右固有ベクトルを配列で返します。

右固有ベクトルを配列で返します。

Matrix::EigenvalueDecomposition#eigenvector_matrix -> Matrix (9100.0)

右固有ベクトルを横に並べた行列を返します。

右固有ベクトルを横に並べた行列を返します。

Matrix::EigenvalueDecomposition#eigenvector_matrix_inv -> Matrix (9100.0)

左固有ベクトルを縦に並べた行列を返します。

...左固有ベクトルを縦に並べた行列を返します。

これは Matrix::EigenvalueDecomposition#v の逆行列です...

Matrix#lup_decomposition -> Matrix::LUPDecomposition (6412.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...
<< 1 2 3 ... > >>