関数imsequence2_conjugate マニュアル

(The documentation of function imsequence2_conjugate)

Last Update: 2025/7/23


◆機能・用途(Purpose)

フーリエスペクトルの複素共役を計算する。
Compute the complex conjugate of a Fourier spectrum.


◆形式(Format)

#include <sequence/operation.h>
inline struct imsequence2 imsequence2_conjugate(struct imsequence2 original)


◆引数(Arguments)

original 元々のフーリエスペクトル。
The original Fourier spectrum.


◆戻り値(Return value)

引数originalで与えたフーリエスペクトルの複素共役を表す構造体。 戻り値のメンバの値は以下のようになる。
A structure that represents the complex conjugate of the Fourier spectrum given by argument original. The values of members of the return value are as below.

戻り値のメンバ
Member of the return value

Value
size original.size
t0 original.t0
dt original.dt
各iに対するvalue[i]
value[i] for each \(i\)
original.value[i]の複素共役
The complex conjugate of original.value[i]


◆使用例(Example)

struct imsequence2 original;
struct imsequence2 conjugate=imsequence2_conjugate(original);