|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Objectorg.mklab.nfc.leq.LUDecomposition<M>
M
- 行列の型public class LUDecomposition<M extends NumericalMatrixOperator<?>>
LU分解(A=LU)および並び替え付きLU分解(P*A=L*U)を保持するクラスです。
コンストラクタの概要 | |
---|---|
LUDecomposition(M lower,
M upper)
新しく生成された IndexedMatrix オブジェクトを初期化します。 |
|
LUDecomposition(M lower,
M upper,
IntMatrix permutation)
新しく生成された IndexedMatrix オブジェクトを初期化します。 |
メソッドの概要 | |
---|---|
boolean |
containP()
並び替え行列を含むか判定します。 |
M |
getL()
L(下三角行列)を返します。 |
IntMatrix |
getP()
P(並び替え行列、直交行列)を返します。 |
M |
getU()
U(上三角行列)を返します。 |
クラス java.lang.Object から継承されたメソッド |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
コンストラクタの詳細 |
---|
public LUDecomposition(M lower, M upper, IntMatrix permutation)
IndexedMatrix
オブジェクトを初期化します。
lower
- L(下三角行列)upper
- U(上三角行列)permutation
- P(並び替え行列、直交行列)public LUDecomposition(M lower, M upper)
IndexedMatrix
オブジェクトを初期化します。
lower
- L(下三角行列)upper
- U(上三角行列)メソッドの詳細 |
---|
public M getL()
public M getU()
public IntMatrix getP()
public boolean containP()
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |