01 /*
02 * $Id: LeftDivideSample2.java,v 1.8 2008/02/02 03:06:27 koga Exp $
03 *
04 * Copyright (C) 2004 Koga Laboratory. All rights reserved.
05 *
06 */
07 package matxbook.chap08;
08
09 import org.mklab.nfc.leq.LUDecomposition;
10 import org.mklab.nfc.matrix.DoubleMatrix;
11
12
13 /**
14 * LU分解による左からの割り算のサンプルです。
15 * @author koga
16 * @version $Revision: 1.8 $, 2004/04/15
17 */
18 public class LeftDivideSample2 {
19
20 /**
21 * メインメソッド
22 *
23 * @param args コマンドライン引数
24 */
25 @SuppressWarnings("nls")
26 public static void main(String[] args) {
27 DoubleMatrix a = new DoubleMatrix(new double[][] { {1, 2, 3}, {6, 5, 4}, {7, 8, 1}});
28 DoubleMatrix b = new DoubleMatrix(new double[] {1, 2, 3}).transpose();
29 LUDecomposition<DoubleMatrix> lu = a.luDecompose();
30 DoubleMatrix l = lu.getL();
31 DoubleMatrix u = lu.getU();
32 DoubleMatrix y = l.leftDivide(b);
33 DoubleMatrix x = u.leftDivide(y);
34 x.print("x");
35 }
36 }
|