DoubleClockSource.java

/*
 * Created on 2006/02/18
 * Copyright (C) 2006 Koga Laboratory. All rights reserved.
 *
 */
package org.mklab.tool.control.system.source;

import org.mklab.nfc.matrix.DoubleMatrix;


/**
 * 時刻を出力するシステムです。
 * 
 * @author Yusuke Tsutsui
 * @version $Revision: 1.3 $, 2006/02/18
 */
public class DoubleClockSource extends DoubleContinuousSource {

  /**
   * コンストラクター
   */
  public DoubleClockSource() {
    super(1);
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public DoubleMatrix outputEquation(double t) {
    return new DoubleMatrix(new double[] {t});
  }
}