関数名 Function name |
機能・用途 Purpose |
double2im 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
double型変数をstruct im型構造体に変換する。 Convert a double-type variable to a struct im-type structure. |
im2double 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
struct im型構造体をdouble型変数に変換する。
変換では複素数の実部を取る。 Convert a struct im-type structure to a double-type variable, by taking the real part of the input complex number. |
imabs 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
複素数の絶対値を計算する。 Compute the absolute value of a complex number. |
imarg 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
複素数の偏角(radian単位)を計算する。 Compute the argument (in radian unit) of a complex number. |
im_plus_im 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
複素数 + 複素数
の計算を行う。 Compute a complex number + a complex number. |
im_plus_im_ 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
複素数 + 複素数
の計算をアドレス渡しで行う。 Compute a complex number + a complex number, using addresses as the input. |
im_plus_double 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
複素数 + 実数
の計算を行う。 Compute a complex number + a real number. |
double_plus_im 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
実数 + 複素数
の計算を行う。 Compute a real number + a complex number. |
im_minus_im 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
複素数 − 複素数
の計算を行う。 Compute a complex number − a complex number. |
im_minus_im_ 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
複素数 − 複素数
の計算をアドレス渡しで行う。 Compute a complex number − a complex number, using addresses as the input. |
im_minus_double 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
複素数 − 実数
の計算を行う。 Compute a complex number − a real number. |
double_minus_im 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
実数 − 複素数
の計算を行う。 Compute a real number − a complex number. |
im_times_im 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
複素数 × 複素数
の計算を行う。 Compute a complex number × a complex number. |
im_times_im_ 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
複素数 × 複素数
の計算をアドレス渡しで行う。 Compute a complex number × a complex number, using addresses as the input. |
im_times_double 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
複素数 × 実数
の計算を行う。 Compute a complex number × a real number. |
double_times_im 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
実数 × 複素数
の計算を行う。 Compute a real number × a complex number. |
im_divided_by_im 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
複素数 ÷ 複素数
の計算を行う。 Compute a complex number ÷ a complex number. |
im_divided_by_im_ 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
複素数 ÷ 複素数
の計算をアドレス渡しで行う。 Compute a complex number ÷ a complex number, using addresses as the input. |
im_divided_by_double 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
複素数 ÷ 実数
の計算を行う。 Compute a complex number ÷ a real number. |
double_divided_by_im 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
実数 ÷ 複素数
の計算を行う。 Compute a real number ÷ a complex number. |
im_plus_im_times_im_ 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
複素数 + 複素数 × 複素数
の計算をアドレス渡しで行う。 Compute a complex number + a complex number × a complex number, using addresses as the input. |
imexp 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
exp(複素数)
の計算を行う。 Compute exp(a complex number). |
imexp_r0 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
exp(純虚数)
の計算を行う。 Compute exp(a pure imaginary number). |
impow 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
複素数の巾乗を計算する。 Compute a power of a complex number. |