Complex number arithmetic

来自cppreference.com
< c‎ | numeric

 
 
 
复杂的数字运算
类型和假想常数
原文:
Types and the imaginary constant
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
操纵
原文:
Manipulation
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
电源和指数函数
原文:
Power and exponential functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
三角函数
原文:
Trigonometric functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
双曲函数
原文:
Hyperbolic functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
 
<complex.h>定义宏,并宣布支持复杂的数字运算的功能。复杂值类型的值double complexfloat complexlong double complex
原文:
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,
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
如果宏常数__STDC_IEC_559_COMPLEX__(C99)由编译器定义,除了复杂类型的假想的类型也支持:double imaginaryfloat imaginary,和long double imaginary。当假想的类型的值被转换为复杂类型的值,由此产生的复杂类型都有其实分量设置为零。当复杂类型的值被转换为假想的类型的值,实分量被丢弃.
原文:
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.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
与真实的,复杂的,和虚的类型中的任何组合,可以使用标准的算术运算符+, -, *, /.
原文:
Standard arithmetic operators +, -, *, / can be used with real, complex, and imaginary types in any combination.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
如果宏常数__STDC_NO_COMPLEX__(C11)定义由编译器,头<complex.h>,此处列出的所有的名字都没有提供.
原文:
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.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
#pragma STDC CX_LIMITED_RANGE on是使用的,复杂的乘法,除法和绝对值可以使用简化的数学公式,尽管中间溢出的可能性.
原文:
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.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
在头文件 <complex.h> 中定义

目录

类型
原文:
Types
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
(C99)
复杂类型的宏
原文:
complex type macro
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(常量宏) [edit]
(C99)
复杂的单位不变
原文:
the complex unit constant i
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(常量宏) [edit]
虚不变
原文:
The imaginary constant
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
(C99)
虚类型的宏
原文:
imaginary type macro
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(常量宏) [edit]
(C99)
虚数单位不变
原文:
the imaginary unit constant i
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(常量宏) [edit]
(C99)
复杂的或虚构的单位不变
原文:
the complex or imaginary unit constant i
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(常量宏) [edit]
操纵
原文:
Manipulation
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
(C11)
(C11)
(C11)
constructs a complex number from real and imaginary parts
(函数宏) [edit]
(C99)
(C99)
(C99)
计算的虚数部的复数
原文:
computes the imaginary part a complex number
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
(C99)
(C99)
(C99)
计算一个复数的实部
原文:
computes the real part of a complex number
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
(C99)
(C99)
(C99)
计算一个复数的相位角
原文:
computes the phase angle of a complex number
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
(C99)
(C99)
(C99)
计算的复数共轭
原文:
computes the complex conjugate
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
(C99)
(C99)
(C99)
计算黎曼球上的投影
原文:
computes the projection on Riemann sphere
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
(C99)
(C99)
(C99)
计算一个复数幅度
原文:
computes the magnitude of a complex number
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
指数functinos
原文:
Exponential functinos
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
(C99)
(C99)
(C99)
计算复杂的基e指数
原文:
computes the complex base-e exponential
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
(C99)
(C99)
(C99)
计算复杂的自然对数
原文:
computes the complex natural logarithm
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
电源的功能
原文:
Power functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
(C99)
(C99)
(C99)
计算复杂的电源功能
原文:
computes the complex power function
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
(C99)
(C99)
(C99)
计算复杂的平方根
原文:
computes the complex square root
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
三角函数
原文:
Trigonometric functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
(C99)
(C99)
(C99)
计算复杂的反余弦值
原文:
computes the complex arc cosine
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
(C99)
(C99)
(C99)
计算复杂的反正弦
原文:
computes the complex arc sine
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
(C99)
(C99)
(C99)
计算复杂的反正切
原文:
computes the complex arc tangent
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
(C99)
(C99)
(C99)
计算复杂的余弦
原文:
computes the complex cosine
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
(C99)
(C99)
(C99)
计算复杂的正弦
原文:
computes the complex sine
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
(C99)
(C99)
(C99)
计算复杂的切线
原文:
computes the complex tangent
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
双曲函数
原文:
Hyperbolic functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
(C99)
(C99)
(C99)
计算复杂的双曲余弦
原文:
computes the complex arc hyperbolic cosine
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
(C99)
(C99)
(C99)
计算复杂的双曲正弦
原文:
computes the complex arc hyperbolic sine
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
(C99)
(C99)
(C99)
computes the complex arc hyperbolic tangent
(函数) [edit]
(C99)
(C99)
(C99)
计算复杂的双曲余弦值
原文:
computes the complex hyperbolic cosine
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
(C99)
(C99)
(C99)
计算复杂的双曲正弦值
原文:
computes the complex hyperbolic sine
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(函数) [edit]
(C99)
(C99)
(C99)
computes the complex hyperbolic tangent
(函数) [edit]