1546件ヒット
[301-400件を表示]
(0.077秒)
種類
- インスタンスメソッド (1370)
- 特異メソッド (128)
- クラス (36)
- 文書 (12)
ライブラリ
- matrix (1534)
クラス
- Matrix (874)
-
Matrix
:: EigenvalueDecomposition (120) -
Matrix
:: LUPDecomposition (120) - Vector (384)
キーワード
- +@ (24)
- -@ (12)
- == (24)
- EigenvalueDecomposition (12)
- ErrNotRegular (12)
- LUPDecomposition (12)
- Ruby用語集 (12)
- [] (12)
- []= (14)
-
angle
_ with (12) - antisymmetric? (7)
- build (24)
- clone (10)
- cofactor (12)
-
cofactor
_ expansion (12) - collect (48)
- collect! (28)
- collect2 (24)
- column (24)
-
column
_ count (12) -
column
_ size (12) -
column
_ vector (12) -
column
_ vectors (12) - columns (12)
- combine (16)
- component (12)
- d (12)
- det (12)
-
det
_ e (12) - determinant (12)
-
determinant
_ e (12) - diagonal (12)
- diagonal? (12)
- dot (12)
- each (36)
- each2 (12)
-
each
_ with _ index (24) - eigen (12)
- eigensystem (12)
-
eigenvalue
_ matrix (12) - eigenvalues (12)
-
eigenvector
_ matrix (12) -
eigenvector
_ matrix _ inv (12) - eigenvectors (12)
- element (24)
- elements (12)
-
elements
_ to _ f (24) -
elements
_ to _ i (24) -
elements
_ to _ r (24) - empty (12)
- empty? (12)
- eql? (24)
-
find
_ index (36) -
first
_ minor (12) - hermitian? (12)
- independent? (24)
- index (36)
-
inner
_ product (12) -
laplace
_ expansion (12) -
lower
_ triangular? (12) - lup (12)
-
lup
_ decomposition (12) - magnitude (12)
- map (48)
- map! (28)
- minor (24)
- norm (12)
- normal? (12)
- normalize (12)
- orthogonal? (12)
- p (12)
- permutation? (12)
- pivots (12)
- r (12)
- real (12)
- real? (12)
- rectangular (12)
- regular? (12)
- row (24)
- scalar (12)
- singular? (24)
-
skew
_ symmetric? (7) - solve (12)
- square? (12)
- symmetric? (12)
-
to
_ a (24) -
to
_ ary (24) - tr (12)
- trace (12)
- u (12)
- unitary? (12)
-
upper
_ triangular? (12) - v (12)
-
v
_ inv (12) - zero (12)
- zero? (20)
検索結果
先頭5件
-
Matrix
# diagonal? -> bool (23100.0) -
行列が対角行列ならば true を返します。
...行列が対角行列ならば true を返します。
@raise ExceptionForMatrix::ErrDimensionMismatch 行列が正方行列でない場合に発生します... -
Matrix
# lower _ triangular? -> bool (23100.0) -
行列が下三角行列ならば true を返します。
行列が下三角行列ならば true を返します。 -
Matrix
# normal? -> bool (23100.0) -
行列が正規行列ならば true を返します。
...行列が正規行列ならば true を返します。
@raise ExceptionForMatrix::ErrDimensionMismatch 行列が正方行列でない場合に発生します... -
Matrix
# orthogonal? -> bool (23100.0) -
行列が直交行列ならば true を返します。
...行列が直交行列ならば true を返します。
@raise ExceptionForMatrix::ErrDimensionMismatch 行列が正方行列でない場合に発生します... -
Matrix
# singular? -> bool (23100.0) -
行列が正方で特異なら true を、正則なら false を返します。
...則なら false を返します。
行列が特異(singular)であるとは、正則でないことです。
行列式が0であること同値です。
正方行列でない場合には例外 ExceptionForMatrix::ErrDimensionMismatch を
発生させます。
@raise ExceptionForMatrix::ErrDimensi... -
Matrix
# upper _ triangular? -> bool (23100.0) -
行列が上三角行列ならば true を返します。
行列が上三角行列ならば true を返します。 -
Matrix
# rectangular -> [Matrix , Matrix] (20316.0) -
行列を実部と虚部に分解したものを返します。
...行列を実部と虚部に分解したものを返します。
//emlist[例][ruby]{
m.rect == [m.real, m.imag] # ==> true for all matrices m
//}
@see Matrix#imaginary, Matrix#real... -
Matrix
:: EigenvalueDecomposition # eigenvalue _ matrix -> Matrix (20303.0) -
固有値を対角成分に並べた行列を返します。
固有値を対角成分に並べた行列を返します。 -
Matrix
# map(which = :all) {|x| . . . } -> Matrix (20244.0) -
行列の各要素に対してブロックの適用を繰り返した結果を、要素として持つ行列を生成します。
...下の Symbol を指定することで、
引数として使われる要素を限定できます。
デフォルトは、:all (全ての要素)です。
指定できる Symbol の詳細は、 Matrix#each の項目を参照して下さい。
//emlist[例][ru......by]{
require 'matrix'
m = Matrix[[1, 2], [3, 4]]
p m.map { |x| x + 100 } # => Matrix[[101, 102], [103, 104]]
p m.map(:diagonal) { |x| x * 10 } # => Matrix[[10, 2], [3, 40]]
//}
@see Matrix#each, Matrix#map!... -
Matrix
:: EigenvalueDecomposition # eigenvector _ matrix _ inv -> Matrix (20209.0) -
左固有ベクトルを縦に並べた行列を返します。
...左固有ベクトルを縦に並べた行列を返します。
これは Matrix::EigenvalueDecomposition#v の逆行列です...