関数sequence_power2_average_limittime マニュアル

(The documentation of function sequence_power2_average_limittime)

Last Update: 2021/12/8


◆機能・用途(Purpose)

指定した時刻範囲における 時系列データのサンプルの値の2乗平均を計算する。
Calculate the square average of the sample values of a time series data in a specified time window.


◆形式(Format)

#include <sequence/statistics.h>
inline double sequence_power2_average_limittime
(struct sequence seq,const double tmin,const double tmax)


◆引数(Arguments)

seq 計算に用いる時系列データを表す構造体。
A structure to represent the time series data used for the computation.
tmin 計算に用いる時刻範囲の下限(\(t_{min}\))。
The lower limit, \(t_{min}\), of the time window used for the calculation.
tmax 計算に用いる時刻範囲の上限(\(t_{max}\))。
The upper limit, \(t_{max}\), of the time window used for the calculation.


◆戻り値(Return value)

\([t_{min},t_{max}]\)の時刻範囲におけるseq.valueの配列要素の2乗平均。 \(t_{min}\), \(t_{max}\)がサンプル時刻でない場合は内側に丸められる。
The square average of the array components of seq.value in a time window \([t_{min},t_{max}]\). If \(t_{min}\) and \(t_{max}\) are not at sample times, the time window is rounded inward.


◆使用例(Example)

struct sequence seq;
double sqave=sequence_power2_average_limittime(seq,2.0,5.0);