関数imsequence2_plus_imsequence2_overwrite マニュアル

(The documentation of function imsequence2_plus_imsequence2_overwrite)

Last Update: 2023/9/25


◆機能・用途(Purpose)

定義域が共通する2つのフーリエスペクトルの和(構造体+構造体)を計算する。 計算結果で第1引数を上書きする。
Compute the summation of two Fourier spectra 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 imsequence2_plus_imsequence2_overwrite
(struct imsequence2 a,struct imsequence2 b)


◆引数(Arguments)

a 和の計算に用いる1つ目のフーリエスペクトルを与える。 関数内で\(a+b\)のフーリエスペクトルに置換される。
Give the 1st Fourier spectrum for the computation of the summation. Within the function, this structure is replaced by a Fourier spectrum of \(a+b\).
b 和の計算に用いる2つ目のフーリエスペクトル。
The 2nd Fourier spectrum used for the computation of the summation.


◆使用例(Example)

struct imsequence2 a,b;
imsequence2_plus_imsequence2_overwrite(a,b);