拡張子の意味
(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)
第1行 : 「size=データサンプル数」の文字列。
Line 1 :
A string “size=the number of data samples”.
第2行 : 「t0=先頭時刻」の文字列。
Line 2 : A string “t0=the beginning time”.
第3行 : 「dt=時間刻み」の文字列。
Line 3 : A string “dt=the sampling interval”.
第4行 : 空行。
Line 4 : An empty line.
第5行以降 : 各サンプルの時刻(第1列)と値(第2列)(時刻順)。
Lines 5 and later :
The time and value of each sample (in the time order),
written in the 1st and 2nd columns, respectively.
各行における列の区切り文字としてはタブを使用する。
Tabs are used to separate the columns in each line.
例(Example)
以下の時系列データを考える。
Let us consider the time series data below:
時刻
Time
値
Value
1.1
12.3
1.2
4.56
1.3
-78.9
1.4
0.12
1.5
34.5
この時系列データを表現するためのファイルの中身は以下のようになる。
ここではタブを分かりやすいように
[TAB]で表す。
The file to represent this time series data is as below,
where tabs are shown by [TAB].