ContinuousObserver.java

/*
 * $Id: ContinuousObserver.java,v 1.1 2008/03/30 02:16:46 koga Exp $
 *
 * Copyright (C) 2004 Koga Laboratory. All rights reserved.
 *
 */
package org.mklab.tool.control.model.pendulum;

import org.mklab.nfc.matrix.DoubleComplexMatrix;


/**
 * (1重)倒立振子の連続時間オブザーバを表すクラスです。
 * 
 * @author koga
 * @version $Revision: 1.1 $, 2004/06/04
 */
public class ContinuousObserver extends org.mklab.tool.control.system.controller.DoubleContinuousObserver {

  /**
   * 新しく生成された<code>ContinuousObserverForSinglePendulum</code>オブジェクトを初期化します。
   */
  public ContinuousObserver() {
    super(new LinearSinglePendulum());
    setObserverPoles(new DoubleComplexMatrix(new double[] {-20, -20}, new double[] {0, 0}).transpose());
  }
}