Complex number arithmetic
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
ヘッダ
<complex.h>
は、マクロを定義し、複素数演算をサポートする関数を宣言します。複雑な値は、その型の値であるdouble complex
、float complex
、long double complex
、 Original:
The header
<complex.h>
defines macros and declares functions that support complex number arithmetic. Complex values are values of type double complex
, float complex
, long double complex
, The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
マクロ定数
__STDC_IEC_559_COMPLEX__
(C99)がコンパイラによって定義されている場合は、複合型に加えて、虚数型もサポートされています:double imaginary
、float imaginary
、とlong double imaginary
。虚数型の値が複合型の値に変換されるとき、結果の複合型はゼロに設定され、実際のコンポーネントを持っています。複雑な型の値が虚数型の値に変換されると、実際のコンポーネントは破棄されます.Original:
If the macro constant
__STDC_IEC_559_COMPLEX__
(C99) is defined by the compiler, in addition to the complex types, the imaginary types are also supported: double imaginary
, float imaginary
, and long double imaginary
. When a value of imaginary type is converted to a value of complex type, the resulting complex type has its real component set to zero. When a value of complex type is converted to a value of imaginary type, the real component is discarded.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
+, -, *, /が任意の組み合わせで、実際の複雑な、虚タイプで使用できる標準的な算術演算子.
Original:
Standard arithmetic operators +, -, *, / can be used with real, complex, and imaginary types in any combination.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
マクロ定数
__STDC_NO_COMPLEX__
(C11)がコンパイラによって定義されている場合、ヘッダー<complex.h>
、ここに記載された名前のすべてが提供されていません.Original:
If the macro constant
__STDC_NO_COMPLEX__
(C11) is defined by the compiler, the header <complex.h>
and all of the names listed here are not provided.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
#pragma STDC CX_LIMITED_RANGE onが使用されている場合は、複雑な乗算、除算、および絶対値が中間のオーバーフローの可能性にもかかわらず、簡素な数式を使用するかもしれません.
Original:
If #pragma STDC CX_LIMITED_RANGE on is used, complex multiplication, division, and absolute value may use simplified mathematical formulas, despite the possibility of intermediate overflow.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Defined in header
<complex.h> | |
Original: Types The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
(C99) |
複合型マクロ Original: complex type macro The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (マクロ定数) |
(C99) |
複雑なユニットiの定数 Original: the complex unit constant i The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (マクロ定数) |
Original: The imaginary constant The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
(C99) |
虚数型マクロ Original: imaginary type macro The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (マクロ定数) |
(C99) |
虚数単位iの定数 Original: the imaginary unit constant i The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (マクロ定数) |
(C99) |
複素数または虚数単位iの定数 Original: the complex or imaginary unit constant i The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (マクロ定数) |
Original: Manipulation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
(C11) (C11) (C11) |
constructs a complex number from real and imaginary parts (関数マクロ) |
(C99) (C99) (C99) |
複素数は虚部を計算します Original: computes the imaginary part a complex number The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C99) (C99) (C99) |
複素数の実数部を計算します Original: computes the real part of a complex number The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C99) (C99) (C99) |
複素数の位相角を計算します Original: computes the phase angle of a complex number The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C99) (C99) (C99) |
複素共役を計算します Original: computes the complex conjugate The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C99) (C99) (C99) |
リーマン球面上に射影を計算します Original: computes the projection on Riemann sphere The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C99) (C99) (C99) |
複素数の絶対値を計算します Original: computes the magnitude of a complex number The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
Original: Exponential functinos The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
(C99) (C99) (C99) |
複雑な底eの指数を計算します Original: computes the complex base-e exponential The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C99) (C99) (C99) |
複雑な自然対数を計算します Original: computes the complex natural logarithm The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
Original: Power functions The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
(C99) (C99) (C99) |
複雑なべき乗関数を計算します Original: computes the complex power function The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C99) (C99) (C99) |
複雑な平方根を計算します Original: computes the complex square root The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
Original: Trigonometric functions The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
(C99) (C99) (C99) |
複雑なアークコサインを計算します Original: computes the complex arc cosine The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C99) (C99) (C99) |
複雑なアークサインを計算します Original: computes the complex arc sine The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C99) (C99) (C99) |
複雑なアークタンジェントを計算します Original: computes the complex arc tangent The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C99) (C99) (C99) |
複雑なコサインを計算します Original: computes the complex cosine The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C99) (C99) (C99) |
複素正弦を計算します Original: computes the complex sine The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C99) (C99) (C99) |
複雑なタンジェントを計算します Original: computes the complex tangent The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
Original: Hyperbolic functions The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | |
(C99) (C99) (C99) |
複雑な逆双曲線余弦を計算します Original: computes the complex arc hyperbolic cosine The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C99) (C99) (C99) |
複雑な逆双曲線正弦を計算します Original: computes the complex arc hyperbolic sine The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C99) (C99) (C99) |
computes the complex arc hyperbolic tangent (関数) |
(C99) (C99) (C99) |
複素数双曲線余弦を計算します Original: computes the complex hyperbolic cosine The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C99) (C99) (C99) |
複素数双曲線正弦を計算します Original: computes the complex hyperbolic sine The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
(C99) (C99) (C99) |
computes the complex hyperbolic tangent (関数) |