|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Objectorg.mklab.tool.signal.Detrend
public class Detrend
線形トレンドを除去した信号を求めるクラスです。
Remove a linear trend
Matrix.meanRowWise()
,
Matrix.meanColumnWise()
コンストラクタの概要 | |
---|---|
Detrend()
|
メソッドの概要 | |
---|---|
static Matrix |
detrend(Matrix data)
X から線形トレンドを除いたデータを返します。 |
static Matrix |
detrend(Matrix data,
int zeroMean)
X から平均を除く。 |
static Matrix |
detrendColumnWise(Matrix X)
行列の列毎にトレンドを除きます。 |
static Matrix |
detrendColumnWise(Matrix data,
int zeroMean)
行列の列毎に平均を除きます。 |
static Matrix |
detrendRowWise(Matrix data)
行列の行毎にトレンドを除く。 |
static Matrix |
detrendRowWise(Matrix data,
int zeroMean)
行列の行毎に平均を除く。 |
クラス java.lang.Object から継承されたメソッド |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
コンストラクタの詳細 |
---|
public Detrend()
メソッドの詳細 |
---|
public static Matrix detrend(Matrix data)
X
から線形トレンドを除いたデータを返します。
data
- データ
public static Matrix detrend(Matrix data, int zeroMean)
X
から平均を除く。
data
- データzeroMean
- 平均値を除くならば1
public static Matrix detrendRowWise(Matrix data)
data
- データ
public static Matrix detrendRowWise(Matrix data, int zeroMean)
data
- データzeroMean
- 平均値を除くならば1
public static Matrix detrendColumnWise(Matrix X)
X
- データ
public static Matrix detrendColumnWise(Matrix data, int zeroMean)
data
- データzeroMean
- 平均値を除くならば1
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |