Hankel.java

/*
 * $Id: Hankel.java,v 1.12 2008/07/16 15:40:00 koga Exp $
 * 
 * Copyright (C) 2004 Koga Laboratory. All rights reserved.
 */
package org.mklab.tool.matrix;

import org.mklab.nfc.matrix.DoubleMatrix;
import org.mklab.nfc.matrix.misc.HankelMatrix;


/**
 * ハンケル行列を求めるクラスです。
 * 
 * <p> Hankel matrix
 * 
 * @author koga
 * @version $Revision: 1.12 $
 * @see org.mklab.tool.matrix.Toeplitz
 * @see org.mklab.tool.matrix.Vander
 */
public class Hankel {

  /**
   * 第1列が<code>x</code>であり、第1非対角より下の成分がゼロ であるハンンケル行列を返します。
   * 
   * @param x_ データ
   * @return ハンケル行列 (hankel matrix)
   */
  public static DoubleMatrix hankel(DoubleMatrix x_) {
    return HankelMatrix.create(x_);
  }

  /**
   * 第1列が<code>x</code>であり、最終行が<code>y</code>であるハンンケル行列 を返します。
   * 
   * @param x_ データ1
   * @param y_ データ2
   * @return ハンケル行列 (hankel matrix)
   */
  public static DoubleMatrix hankel(DoubleMatrix x_, DoubleMatrix y_) {
    return HankelMatrix.create(x_, y_);
  }

}