関数sequence_plus_sequence_overwrite マニュアル

(The documentation of function sequence_plus_sequence_overwrite)

Last Update: 2023/6/12


◆機能・用途(Purpose)

定義域が共通する2つの時系列データの和(構造体+構造体)を計算する。 計算結果で第1引数を上書きする。
Compute the summation of two time series data that have the same definition range (i.e., structure + structure). The 1st argument is replaced by the computation result.


◆形式(Format)

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


◆引数(Arguments)

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


◆使用例(Example)

struct sequence a,b;
sequence_plus_sequence_overwrite(a,b);