|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Objectorg.mklab.nfc.eig.RealQrDecomposer<E>
E
- 成分の型public final class RealQrDecomposer<E extends NumericalScalar<E>>
実行列のQR分解を行うためのクラスです。
コンストラクタの概要 | |
---|---|
RealQrDecomposer()
|
メソッドの概要 | |
---|---|
QRDecompositionElements<E> |
decompose(E[][] a)
実行列をQR分解を返します。 |
QRDecompositionElements<E> |
decomposeWithPermutation(E[][] a)
実行列の並べ替え付きQR分解を返します。 |
クラス java.lang.Object から継承されたメソッド |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
コンストラクタの詳細 |
---|
public RealQrDecomposer()
メソッドの詳細 |
---|
public QRDecompositionElements<E> decompose(E[][] a)
実行列をA、直交行列をQ、上三角行列をRとすると、これらの行列の間には、
A = Q * R
QT * Q = Iの関係が成り立ちます。
a
- 対象となる実行列
public QRDecompositionElements<E> decomposeWithPermutation(E[][] a)
実行列をA、直交行列をQ、上三角行列を R、並べ替え行列をPとすると、 これらの行列の間には、
A * P = Q * R
Q T * Q = Iの関係が成り立ちます。
a
- 対象となる実行列
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |