seq1 | 計算に使用する1つ目の時系列データを表す構造体。
下記の計算式における\(f(t_1+i\Delta t)\)。 A structure which represents the first time series data used in the calculation; \(f(t_1+i\Delta t)\) in the formula below. |
seq2 | 計算に使用する2つ目の時系列データを表す構造体。
下記の計算式における\(g(t_2+j\Delta t)\)。
メンバdtの値は引数seq1と同じでなければならない。 A structure which represents the first time series data used in the calculation; \(g(t_2+j\Delta t)\) in the formula below. The value of member dt of this argument must be equal to that of argument seq1. |
戻り値のメンバ Member of the return value |
値 Value |
size | (\ref{eq.K.condition})式の\(K(=I+J-1)\)の値。
seq1.size\(+\)seq2.size\(-1\)により計算する。 The value of \(K(=I+J-1)\) (eq. \ref{eq.K.condition}), calculated as seq1.size\(+\)seq2.size\(-1\). |
t0 | (\ref{eq.t3.definition})式の\(t_3(=t_1+t_2)\)の値。
seq1.t0\(+\)seq2.t0により計算する。 The value of \(t_3(=t_1+t_2)\) (eq. \ref{eq.t3.definition}), calculated as seq1.t0\(+\)seq2.t0. |
dt | 下記「計算式とアルゴリズム」の\(\Delta t\)の値。
seq1.dtを使用する(seq2.dtでもある)。 The value of \(\Delta t\) in “Formula and algorithm” below; the value of seq1.dt is used, which is equal to seq2.dt. |
各\(k\)に対するvalue[k] value[k] for each \(k\) |
下記「計算式とアルゴリズム」の\(h(t_3+k\Delta t)\)の値。
(\ref{eq.discrete})式を用いて計算する。 The value of \(h(t_3+k\Delta t)\) in “Formula and algorithm” below, calculated by eq. (\ref{eq.discrete}). |
変数 Variable |
seq1 | seq2 | 戻り値 Return value |
計算式 Formula |
関数 Function |
\(f\) | \(g\) | \(h\) | |
メンバsize Member size |
\(I\) | \(J\) | \(K\) | (\ref{eq.K.condition}) |
メンバt0 Member t0 |
\(t_1\) | \(t_2\) | \(t_3\) | (\ref{eq.t3.definition}) |
メンバdt Member dt |
\(\Delta t\) | \(\Delta t\) | \(\Delta t\) | |
各\(n\)に対するメンバvalue[n] Member value[n] for each \(n\) |
\(f(t_1+n\Delta t)\) | \(g(t_2+n\Delta t)\) | \(h(t_3+n\Delta t)\) | (\ref{eq.k.definition})(\ref{eq.discrete}) |