sequencefiles_averageコマンド マニュアル

(The documentation of sequencefiles_average command)

Last Update: 2024/11/28


◆機能・用途(Purpose)

複数の時系列データファイルを読み込んで平均値の時系列データを作成する。
Read multiple time series data from files and average them.


◆ソースコード(Source code)

$YMAEDA_OPENTOOL_DIR/sequence/src/sequencefiles_average.c


◆使用方法(Usage)

コマンドライン引数でパラメータを指定する。 パラメータの一覧を下表に示す。
Specify parameters by command-line arguments. The table below shows a list of parameters.


●「-」から始まらない引数 (Arguments not beginning with “-”)

このコマンドでは「-」から始まらない引数は存在しない。
This command does not have arguments not beginning with “-”.


●1つの「-」から始まる引数 (Arguments beginning with a single “-”)

このコマンドでは1つの「-」から始まる引数は存在しない。
This command does not have arguments beginning with a single “-”.


●「--パラメータ名=パラメータ値」の形式の引数 (Arguments of a form “--Parameter name=Parameter Value”)

「--パラメータ名=パラメータ値」の形式の引数は自由な順番で指定できる。 「-」から始まらない引数の間に挿入しても良い。 相反する指定がなされた場合には後の指定が優先される。 デフォルト値を持つパラメータは省略できる。
Arguments of a form “--Parameter name=Parameter Value” can be placed in an arbitrary order. They can even be inserted between arguments not beginning with “-”. In case of conflicting options being specified, the latter option has a higher priority. Parameters that have default values can be omitted.

パラメータ名
Parameter name
意味
Meaning
可能なパラメータ値
Allowed parameter values
デフォルト値
Default value
inputfiles 使用する時系列データファイルのリスト。 個々のファイルは ymaeda_opentoolsの時系列データファイル形式 のいずれかで書かれているものとする。 定義域と時間刻みは全てのファイルで共通でなければならない。
A list of time series data files to read. Each file must be written with one of the file formats of time series data in ymaeda_opentools. The definition range and sampling interval must be common among all files.
ファイル名をカンマ(,)で区切って並べた文字列。
A string composed of the file names separated by commas (,).
どちらか片方は省略不可、もう片方は使用されない。
One of them cannot be omitted, and the other is not used.
inputfile_list 使用する時系列デーファイルを列挙した設定ファイル名。 この設定ファイルには1行につき1つの時系列データファイル名を書く。 また、設定ファイルには空行や#から始まるコメントを自由に挿入できる。 個々の時系列データファイルは ymaeda_opentoolsの時系列データファイル形式 のいずれかで書かれているものとする。 定義域と時間刻みは全ての時系列データファイルで共通でなければならない。
The name of a configuration file that lists the time series data files to read. Write a time series data file name in each line of this configuration file. The configuration file can consist of empty lines and comments beginning with #. Each time series data file must be written with one of the file formats of time series data in ymaeda_opentools. The definition range and sampling interval must be common among all time series data files.
設定ファイルの名前を表す文字列。拡張子は何でも良い。
The name of a configuration file with an arbitrary extension.
outputfile 出力する時系列データファイル名。拡張子は ymaeda_opentoolsの時系列データファイル形式 のいずれかでなければならない。
Name of the output time series data. The extension must be one of the file formats of time series data in ymaeda_opentools.
ファイル名を表す文字列。
A string that represents a file name.
省略不可
Cannot be omitted


◆動作(Behaviour)

パラメータinputfilesで指定したファイルから時系列データを読み込み、 それらを平均した時系列データを引数outputfilesで指定したファイルに出力する。
Read time series data from the files specified by parameter inputfiles, average them, and output the result into the file specified by parameter outputfile.


◆使用例(Example)

sequencefiles_average --inputfiles=data1.seq1,data2.seq1,data3.seq1,data4.seq1,data5.seq1 --outputfile=data1-5_average.seq1

sequencefiles_average --inputfile_list=data_files.list --outputfile=data6-10_average.seq1

(data_files.list)
data6.seq1
data7.seq1
data8.seq1
data9.seq1
data10.seq1