org.mklab.tool.matrix
クラス Toeplitz

java.lang.Object
  上位を拡張 org.mklab.tool.matrix.Toeplitz

public class Toeplitz
extends Object

テプリッツ行列を求めるクラスです。

Toeplitz matrix

バージョン:
$Revision: 1.15 $
作成者:
koga
関連項目:
Hankel, Vander

コンストラクタの概要
Toeplitz()
           
 
メソッドの概要
static Matrix toeplitz(Matrix x_)
          対称(エルミート)テプリッツ行列を返します。
static Matrix toeplitz(Matrix x_, Matrix y_)
          xが第1列、yが第1行の 非対称テプリッツ行列を返します。
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

Toeplitz

public Toeplitz()
メソッドの詳細

toeplitz

public static Matrix toeplitz(Matrix x_)
対称(エルミート)テプリッツ行列を返します。

パラメータ:
x_ - データ
戻り値:
テプリッツ行列 (toeplitz matrix)

toeplitz

public static Matrix toeplitz(Matrix x_,
                              Matrix y_)
xが第1列、yが第1行の 非対称テプリッツ行列を返します。

パラメータ:
x_ - データ1
y_ - データ2
戻り値:
テプリッツ行列 (toeplitz matrix)