関数CKcdivide マニュアル

(The documentation of function CKcdivide)

Last Update: 2023/6/12


◆機能・用途(Purpose)

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


◆形式(Format)

#include <functions_with_errcheck.h>
inline double complex CKcdivide (const double complex a,const double complex 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 complex c=CKcdivide(1.2+3.4∗I,5.6+7.8∗I);