org.mklab.nfc.leq
クラス LUDecompositionDoubleRealElements

java.lang.Object
  上位を拡張 org.mklab.nfc.leq.LUDecompositionDoubleRealElements

public class LUDecompositionDoubleRealElements
extends Object

並べ替え付きLU分解(P*A=L*U)の成分を保持するためのクラスです。

バージョン:
$Revision$, 2009/12/18
作成者:
koga

コンストラクタの概要
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
 

コンストラクタの詳細

LUDecompositionDoubleRealElements

public LUDecompositionDoubleRealElements(double[][] lower,
                                         double[][] upper,
                                         int[][] permutation)
新しく生成されたIndexedElementsオブジェクトを初期化します。

パラメータ:
lower - L(下三角行列)
upper - U(上三角行列)
permutation - P(並び替え行列、直交行列)

LUDecompositionDoubleRealElements

public LUDecompositionDoubleRealElements(double[][] lower,
                                         double[][] upper)
新しく生成されたIndexedElementsオブジェクトを初期化します。

パラメータ:
lower - L(下三角行列)
upper - U(上三角行列)
メソッドの詳細

getL

public double[][] getL()
L(下三角行列)を返します。

戻り値:
L(下三角行列)

getU

public double[][] getU()
U(上三角行列)を返します。

戻り値:
U(上三角行列)

getP

public int[][] getP()
P(並び替え行列、直交行列)を返します。

戻り値:
P(並び替え行列、直交行列)

containPermutation

public boolean containPermutation()
並び替え行列を含むか判定します。

戻り値:
並び替え行列を含むならばtrue