関数write_imsequence2_file マニュアル

(The documentation of function write_imsequence2_file)

Last Update: 2023/9/25


◆機能・用途(Purpose)

フーリエスペクトルをファイルに書き出す。
Write a Fourier spectrum to a file.


◆形式(Format)

#include <sequence/readwrite.h>
inline void write_imsequence_file
(const char ∗outputfile,struct imsequence2 seq)


◆引数(Arguments)

outputfile 出力ファイル名。 拡張子はymaeda_opentoolsのフーリエスペクトルの入出力ファイル形式 (独自のファイル形式参照) のいずれかとする。 末尾に「-」を付けることができ、この場合は上書き時の確認が省略される (ファイル名からは「-」は取り除かれる)。
The output file name. The extension must be one of the file formats of a Fourier spectrum (see special file format). A “-” can be appended at the end; in this case, the existing file is overwritten without consulting the user (the “-” is omitted from the file name).
seq 出力したいフーリエスペクトル。
The Fourier spectrum to output.


◆使用例(Example)

struct imsequence2 seq;
write_imsequence2_file("file.imseq1",seq);