関数CKfdivide マニュアル

(The documentation of function CKfdivide)

Last Update: 2023/6/12


◆機能・用途(Purpose)

実数同士の割り算をエラーチェック付きで実行する。
Compute the quotient of two real numbers with error checks.


◆形式(Format)

#include <functions_with_errcheck.h>
inline double CKfdivide(const double a,const double b)


◆引数(Arguments)

a 割り算の分子。
The numerator of the quotient.
b 割り算の分母。
The denominator of the quotient.


◆戻り値とエラーチェック (Return value and error checks)

下表で桃色のセルがエラー処理を表す。
The pick colored cells in the table below represent error checks.

条件
Condition
戻り値/動作
Return value or behaviour of the function
\(b=0\) (関数doublecmp を用いて判定)
\(b=0\), judged by function doublecmp
プログラムをエラー終了する。
The program finishes as an error.
上記以外の場合
The other cases
\(a/b\)


◆使用例(Example)

double d=CKfdivide(1.2,3.4);