1. method="linear"の場合
(In case of method="linear")
時刻\(t\)よりも前の最後のサンプルの時刻を\(t_1\)、
時刻\(t\)よりも後の最初のサンプルの時刻を\(t_2\)、
引数seqが表す時系列データを\(f\)として
\[\begin{equation}
f(t)=\frac{(t_2-t)f(t_1)+(t-t_1)f(t_2)}{t_2-t_1}
\label{eq.linear}
\end{equation}\]
により計算する。
但し、時刻\(t\)がサンプル時刻の場合はその時刻での値をそのまま用いる。
Eq. (1) is used to calculate the interpolated value at time \(t\),
where \(t_1\) and \(t_2\) are
the times of data samples immediately before and after \(t\),
and the function \(f\) is the time series represented by argument seq.
If \(t\) is a data sample point, the value at this time is directly used.