関数sequence_plus_double_overwrite マニュアル

(The documentation of function sequence_plus_double_overwrite)

Last Update: 2023/6/28


◆機能・用途(Purpose)

時系列データに定数を加算する(構造体\(+\)定数)。 計算結果で第1引数を上書きする。
Add a constant value to a time series data (i.e., structure \(+\) constant). The 1st argument is replaced by the computation result.


◆形式(Format)

#include <sequence/operation.h>
inline void sequence_plus_double_overwrite
(struct sequence a,const double b)


◆引数(Arguments)

a 和の計算に用いる時系列データを与える。 関数内で\(a+b\)の時系列データに置換される。
Give the time series data used for the computation of the summation. Within the function, this structure is replaced by a time series data of \(a+b\).
b 加える定数。
The constant to be added.


◆使用例(Example)

struct sequence a;
sequence_plus_double_overwrite(a,1.2);