843件ヒット
[201-300件を表示]
(0.052秒)
クラス
- Matrix (462)
-
Matrix
:: EigenvalueDecomposition (120) -
Matrix
:: LUPDecomposition (120) - Vector (141)
キーワード
- []= (7)
- adjugate (12)
- cofactor (12)
-
cofactor
_ expansion (12) - collect (24)
- collect! (14)
- collect2 (12)
- column (24)
-
column
_ count (12) -
column
_ size (12) -
column
_ vectors (12) - conjugate (12)
-
cross
_ product (12) - d (12)
- det (24)
- determinant (24)
- each (24)
- each2 (12)
-
each
_ with _ index (12) - eigen (12)
- eigensystem (12)
-
eigenvalue
_ matrix (12) - eigenvalues (12)
-
eigenvector
_ matrix (12) -
eigenvector
_ matrix _ inv (12) - eigenvectors (12)
-
entrywise
_ product (8) -
find
_ index (24) -
first
_ minor (12) -
hadamard
_ product (8) - index (24)
-
inner
_ product (12) - l (12)
-
laplace
_ expansion (12) -
lower
_ triangular? (12) - lup (12)
-
lup
_ decomposition (12) - magnitude (12)
- map (24)
- map! (14)
- norm (12)
- p (12)
- permutation? (12)
- pivots (12)
- r (12)
- rectangular (12)
- regular? (12)
- round (12)
-
row
_ count (12) -
row
_ size (12) - singular? (24)
- solve (12)
- square? (12)
-
to
_ a (24) -
to
_ ary (24) - unitary? (12)
-
upper
_ triangular? (12) - v (12)
-
v
_ inv (12)
検索結果
先頭5件
-
Matrix
# singular? -> bool (6103.0) -
行列が正方で特異なら true を、正則なら false を返します。
...ue を、正則なら false を返します。
行列が特異(singular)であるとは、正則でないことです。
行列式が0であること同値です。
正方行列でない場合には例外 ExceptionForMatrix::ErrDimensionMismatch を
発生させます。
@raise ExceptionForMatrix... -
Matrix
# square? -> bool (6103.0) -
正方行列であるなら、 true を返します。
...正方行列であるなら、 true を返します。... -
Matrix
# unitary? -> bool (6103.0) -
行列がユニタリならば true を返します。
...行列がユニタリならば true を返します。
@raise ExceptionForMatrix::ErrDimensionMismatch 行列が正方行列でない場合に発生します... -
Matrix
# upper _ triangular? -> bool (6103.0) -
行列が上三角行列ならば true を返します。
...行列が上三角行列ならば true を返します。... -
Matrix
:: EigenvalueDecomposition # eigenvalue _ matrix -> Matrix (6103.0) -
固有値を対角成分に並べた行列を返します。
固有値を対角成分に並べた行列を返します。 -
Matrix
:: LUPDecomposition # singular? -> bool (6103.0) -
元の行列が正方で特異なら true を、正則なら false を返します。 LUP 分解の結果を利用して判定します。
...元の行列が正方で特異なら true を、正則なら false を返します。
LUP 分解の結果を利用して判定します。
@see Matrix#singular?... -
Vector
# magnitude -> Float (6103.0) -
ベクトルの大きさ(ノルム)を返します。
...ベクトルの大きさ(ノルム)を返します。
//emlist[例][ruby]{
require 'matrix'
Vector[3, 4].norm # => 5.0
Vector[Complex(0, 1), 0].norm # => 1.0
//}
@see Vector#normalize... -
Matrix
# conjugate -> Matrix (3103.0) -
複素共役を取った行列を返します。
...複素共役を取った行列を返します。
//emlist[例][ruby]{
require 'matrix'
Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]]
# => 1+2i i 0
# 1 2 3
Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]].conjugate
# => 1-2i -i 0
# 1 2 3
//}... -
Matrix
# rectangular -> [Matrix , Matrix] (3103.0) -
行列を実部と虚部に分解したものを返します。
...行列を実部と虚部に分解したものを返します。
//emlist[例][ruby]{
m.rect == [m.real, m.imag] # ==> true for all matrices m
//}
@see Matrix#imaginary, Matrix#real...