seq2形式 ファイル仕様

(Definition of “seq2” format)

Last Update: 2021/6/28



拡張子(Extension)
seq2


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


対象とするデータと構造体 (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)
ヘッダ(データサンプル数、先頭時刻、時間刻み)と 各サンプルの時刻およびデータの値を書いたテキストファイルである。 波形プロットが容易で、 時刻と値の対応関係も分かりやすいのが長所である。 反面、ファイルサイズは大きくなる。
A text file composed of headers (the number of data samples, beginning time, and sampling interval) followed by the time and data value of each sample. Data written in this format can easily be plotted as a waveform, and it is easy to relate the time and value of each sample. A shortage is that the file size is large.


仕様詳細(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

この時系列データを表現するためのファイルの中身は以下のようになる。 ここではタブを分かりやすいように [TAB]で表す。
The file to represent this time series data is as below, where tabs are shown by [TAB].

size=5
t0=1.1
dt=0.1

1.1[TAB]12.3
1.2[TAB]4.56
1.3[TAB]-78.9
1.4[TAB]0.12
1.5[TAB]34.5