関数imsequence2_plus_complex_overwrite マニュアル

(The documentation of function imsequence2_plus_complex_overwrite)

Last Update: 2023/6/29


◆機能・用途(Purpose)

フーリエスペクトルに定数を加算する(構造体\(+\)定数)。 計算結果で第1引数を上書きする。
Add a constant value to a Fourier spectrum (i.e., structure \(+\) constant). The 1st argument is replaced by the computation result.


◆形式(Format)

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


◆引数(Arguments)

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


◆使用例(Example)

struct imsequence2 a;
double complex b=1.2+3.4∗I;
imsequence2_plus_complex_overwrite(a,b);