sequencefile_integralコマンド マニュアル

(The documentation of sequencefile_integral command)

Last Update: 2024/2/29


◆機能・用途(Purpose)

時系列データをファイルから読み込んで積分する。
Read a time series data from a file and integrate the data.


◆ソースコード(Source code)

$YMAEDA_OPENTOOL_DIR/sequence/src/sequencefile_integral.c


◆使用方法(Usage)

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


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

引数
Argument
与える値
Quantity to be given
第1引数
1st argument
入力時系列データファイル名。
Name of the input time series data file.
第2引数
2nd argument
積分した時系列データの出力先ファイル名。
Name of the output (integrated) time series data.


●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”)

このコマンドでは「--パラメータ名=パラメータ値」の形式の引数存在しない。
This command does not have arguments of a form “--Parameter name=Parameter Value”.


◆動作(Behaviour)

第1引数で指定した時系列データファイルを読み込んで積分を行い、 得られた時系列データを第2引数で指定したファイルに出力する。 積分の計算には 関数sequence_integralの計算式を用いる。
Read the time series data specified by the 1st argument, integrate it, and output the resultant time series data to the file specified by the 2nd argument. The formula of function sequence_integral is used for the computation of the integral.


◆使用例(Example)

sequencefile_integral velocity.seq1 displacement.seq1