関数imsequence_cpy マニュアル

(The documentation of function imsequence_cpy)

Last Update: 2023/6/12


◆機能・用途(Purpose)

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


◆形式(Format)

#include <sequence/operation.h>
inline struct imsequence imsequence_cpy(struct imsequence 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 imsequence data1;
struct imsequence data2=imsequence_cpy(data1);