関数sequence_rmean マニュアル

(The documentation of function sequence_rmean)

Last Update: 2025/4/8


◆機能・用途(Purpose)

時系列データから平均値を差し引く。
Subtract the mean of a time series data.


◆形式(Format)

#include <sequence/operation.h>
inline struct sequence sequence_rmean(const struct sequence original)


◆引数(Arguments)

original 平均値を差し引く前の時系列データ。
The original time series data before subtracting the average.


◆戻り値(Return value)

引数originalが表す時系列データから平均値を差し引いた時系列データ。
A time series data obtained by subtracting the mean from a time series data given by argument original.


◆使用例(Example)

struct sequence old,new;
new=sequence_rmean(old);