CMPLXF, CMPLX, CMPLXL
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <complex.h> 中定义
|
||
返回组成
real
一个复数的实部和虚部imag
作为。该功能的实现为宏. 原文:
Returns a complex number composed of
real
as the real part and imag
as the imaginary part. The functions are implemented as macros. 返回的值在合适的用于静态或线程存储持续时间为变量的初始值设定的,但只有当
real
imag
也适合.原文:
The returned value in suitable for use as initializer for variables with static or thread storage duration, but only if
real
and imag
are also suitable.[编辑] 参数
real | - | 返回的复数的实部
原文: the real part of the complex number to return |
imag | - | 复数的虚部返回
原文: the imaginary part of the complex number to return |
[编辑] 返回值
一个复数的实部和虚部组成的
real
和imag
.原文:
A complex number composed of
real
and imag
as the real and imaginary parts.[编辑] 示例
本章尚未完成 原因:暂无示例 |