関数sequence_divided_by_sequence マニュアル

(The documentation of function sequence_divided_by_sequence)

Last Update: 2023/6/12


◆機能・用途(Purpose)

定義域が共通する2つの時系列データの商(構造体÷構造体)を計算する。
Compute the quotient of two time series data that have the same definition range (i.e., structure ÷ structure).


◆形式(Format)

#include <sequence/operation.h>
inline struct sequence sequence_divided_by_sequence
(struct sequence a,struct sequence b)


◆引数(Arguments)

a 商の計算に用いる1つ目の時系列データ。
The 1st time series data used for the computation of the quotient.
b 商の計算に用いる2つ目の時系列データ。
The 2nd time series data used for the computation of the quotient.


◆戻り値(Return value)

\(a/b\)を表す構造体。戻り値のメンバの値は以下のようになる。
A structure that represents \(a/b\). The values of members of the return value are as below.

戻り値のメンバ
Member of the return value

Value
size a.size
t0 a.t0
dt a.dt
各iに対するvalue[i]
value[i] for each \(i\)
a.value[i]/b.value[i]であり、 関数CKfdivideを用いて計算する
a.value[i]/b.value[i] computed by function CKfdivide

なお、a.size=b.size, a.t0=b.t0, a.dt=b.dtの3条件が成り立つことが前提であり、 これらのいずれかが成り立たない場合はプログラムをエラー終了する。
These computations assume that a.size=b.size, a.t0=b.t0, and a.dt=b.dt hold. If either of them are not satisfied, the program finishes as an error.


◆使用例(Example)

struct sequence a,b;
struct sequence c=sequence_divided_by_sequence(a,b);