StateFeedback.java
/*
* $Id: StateFeedback.java,v 1.10 2008/02/02 03:06:25 koga Exp $
*
* Copyright (C) 2004 Koga Laboratory. All rights reserved.
*
*/
package org.mklab.tool.control.model.matxbook;
import org.mklab.nfc.matrix.DoubleMatrix;
import org.mklab.tool.control.system.math.DoubleConstantSystem;
/**
* 状態フィードバック制御器を表すクラスです。
*
* @author koga
* @version $Revision: 1.10 $, 2004/04/23
*/
public class StateFeedback extends DoubleConstantSystem {
/**
* 新しく生成された<code>StateFeedback</code>オブジェクトを初期化します。
*/
public StateFeedback() {
super(new DoubleMatrix(new double[] {2, 2}));
}
}