sequencefiles_averageコマンド マニュアル

(The documentation of sequencefiles_average command)

Last Update: 2024/3/1


◆機能・用途(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 (,).
省略不可
Cannot be omitted
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