seq1形式 ファイル仕様

(Definition of “seq1” format)

Last Update: 2021/6/28



拡張子(Extension)
seq1


拡張子の意味 (Meaning of the extension)
「seq」はsequence(時系列)、「1」はデータを1列で記載するという意味。
“seq” represents a sequence (i.e., a time series), and “1” means that the data are written in 1 column.


対象とするデータと構造体 (Supported data and structures)
時系列データ(struct sequence型)
A time series data given by struct sequence-type


データの保存形式 (Format of each data)
有効数字6桁の浮動小数点指数形式(%.6e)
Floating-point numbers in exponential formats with 6 decimals (%.6e)


特徴(Features)
ヘッダ(データサンプル数、先頭時刻、時間刻み)と 各サンプルのデータの値のみを書いたテキストファイルである。 seq2と比べて各サンプルの時刻を省いてある分だけファイルサイズが小さい。 反面、ファイルをそのまま波形としてプロットできず、 値と時刻の対応付けにも手間がかかる。
A text file composed of headers (the number of data samples, beginning time, and sampling interval) followed by the data value of each sample. The file size is smaller than that of seq2, as the time of each sample is omitted. As a result, the data can not directly be plotted as a waveform, and relating the time and value of each sample is not straightforward.


仕様詳細(Detail)


(Example)
以下の時系列データを考える。
Let us consider the time series data below:

時刻
Time

Value
1.112.3
1.24.56
1.3-78.9
1.40.12
1.534.5

この時系列データを表現するためのファイルの中身は以下のようになる。
The file to represent this time series data is as below.

size=5
t0=1.1
dt=0.1

12.3
4.56
-78.9
0.12
34.5