拡張子の意味
(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)
第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行以降 : 各サンプルの値(時刻順)。
Lines 5 and later :
The value of each sample (in the time order).
例(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
この時系列データを表現するためのファイルの中身は以下のようになる。
The file to represent this time series data is as below.