関数check_timeRangeAndStep_for_arrayStack マニュアル

(The documentation of function check_timeRangeAndStep_for_arrayStack)

Last Update: 2025/8/7


◆機能・用途(Purpose)

時系列データの時刻範囲と刻み幅がトレース間で共通(スタッキング可能)であるかをチェックする。
Check if the time ranges and intervals of the time-series data are common among the traces (i.e., the traces can be stacked).


◆形式(Format)

#include <array/stack.h>
inline void check_timeRangeAndStep_for_arrayStack
(const struct array_station_info stations,  const struct sequence ∗data_before, const struct sequence ∗data,
 const struct sequence ∗data_after)


◆引数(Arguments)

stations アレイの観測点情報。
The station information of the array.
data_before スタッキングの対象とするタイムウインドウの直前の時系列データ を各観測点について並べた配列。
An array composed of the time-series data at every station immediately before the time window to be stacked.
data スタッキングの対象とするタイムウインドウの時系列データ を各観測点について並べた配列。
An array composed of the time-series data at every station for the time window to be stacked.
data_after スタッキングの対象とするタイムウインドウの直後の時系列データ を各観測点について並べた配列。
An array composed of the time-series data at every station immediately after the time window to be stacked.


◆チェック項目(Checks conducted)



◆使用例(Example)

check_timeRangeAndStep_for_arrayStack(stations,data_before,data,data_after);