mode |
間引き後の時系列データに使用する値。以下のいずれかとする。
Values used in the resampled time series data.
Choose from one of the followings.
- "normal"
残すサンプル時刻での元々の時系列データの値。
このオプションを選択した場合、戻り値は
関数sequence_decimate
の戻り値と同じものになる。
The value of the original time series data
at each remained sample time.
If this option is selected, the return value is same as
that from
function sequence_decimate.
- "ave"
区間\([t-\Delta t_{out}/2,t+\Delta t_{out}/2]\)
での平均値を各サンプル時刻\(t\)での値とする。
Use the average in section
\([t-\Delta t_{out}/2,t+\Delta t_{out}/2]\)
as the value at each sample time \(t\).
- "abs_ave"
区間\([t-\Delta t_{out}/2,t+\Delta t_{out}/2]\)
での絶対値平均値を各サンプル時刻\(t\)での値とする。
Use the absolute value average in section
\([t-\Delta t_{out}/2,t+\Delta t_{out}/2]\)
as the value at each sample time \(t\).
- "max"
区間\([t-\Delta t_{out}/2,t+\Delta t_{out}/2]\)
での最大値を各サンプル時刻\(t\)での値とする。
Use the maximum value in section
\([t-\Delta t_{out}/2,t+\Delta t_{out}/2]\)
as the value at each sample time \(t\).
- "min"
区間\([t-\Delta t_{out}/2,t+\Delta t_{out}/2]\)
での最小値を各サンプル時刻\(t\)での値とする。
Use the minimum value in section
\([t-\Delta t_{out}/2,t+\Delta t_{out}/2]\)
as the value at each sample time \(t\).
- "abs_max"
区間\([t-\Delta t_{out}/2,t+\Delta t_{out}/2]\)
での絶対値最大値を各サンプル時刻\(t\)での値とする。
Use the absolute maximum value in section
\([t-\Delta t_{out}/2,t+\Delta t_{out}/2]\)
as the value at each sample time \(t\).
|