関数sequence_power2_average マニュアル
(The documentation of function
sequence_power2_average
)
Last Update: 2021/12/8
◆機能・用途
(Purpose)
時系列データのサンプルの値の2乗平均を計算する。
Calculate the square average of the sample values of a time series data.
◆形式
(Format)
#include <sequence/statistics.h>
inline double sequence_power2_average(struct sequence seq)
◆引数
(Arguments)
seq
計算に用いる時系列データを表す構造体。
A structure to represent the time series data used for the computation.
◆戻り値
(Return value)
seq.valueの配列要素の2乗平均。
The square average of the array components of
seq.value
.
◆使用例
(Example)
struct sequence seq;
double sqave=sequence_power2_average(seq);