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