関数imsequence2_cpy マニュアル

(The documentation of function imsequence2_cpy)

Last Update: 2023/6/12


◆機能・用途(Purpose)

フーリエスペクトルをコピーする。
Copy a Fourier spectrum.


◆形式(Format)

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


◆引数(Arguments)

original 元々のフーリエスペクトルを表す構造体。
A structure that represents the original Fourier spectrum.


◆戻り値(Return value)

引数originalが表すフーリエスペクトルと全く同じデータを格納した構造体。
A structure composed of the same Fourier spectrum as that represented by argument original.


◆使用例(Example)

struct imsequence2 data1;
struct imsequence2 data2=imsequence2_cpy(data1);