関数write_sequence_file マニュアル

(The documentation of function write_sequence_file)

Last Update: 2023/9/25


◆機能・用途(Purpose)

時系列データをファイルに書き出す。
Write time series data to a file.


◆形式(Format)

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


◆引数(Arguments)

outputfile 出力ファイル名。 拡張子はymaeda_opentoolsの時系列データの入出力ファイル形式 (独自のファイル形式参照) のいずれかとする。 末尾に「-」を付けることができ、この場合は上書き時の確認が省略される (ファイル名からは「-」は取り除かれる)。
The output file name. The extension must be one of the file formats of a time series data (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 time series data to output.


◆使用例(Example)

struct sequence seq;
write_sequence_file("file.seq1",seq);