complex::imag
擷取複數的虛數部分。
constexpr T imag( ) const;
T imag(const T& Right);
參數
- Right
要擷取其虛數部分的複數。
傳回值
複數的虛數部分。
備註
針對複數 a + bi,其虛數部分或元件為 Im(a + bi) = b。
範例
// complex_imag.cpp
// compile with: /EHsc
#include <complex>
#include <iostream>
int main( )
{
using namespace std;
complex <double> c1 ( 4.0 , 3.0 );
cout << "The complex number c1 = " << c1 << endl;
double dr1 = c1.real ( );
cout << "The real part of c1 is c1.real ( ) = "
<< dr1 << "." << endl;
double di1 = c1.imag ( );
cout << "The imaginary part of c1 is c1.imag ( ) = "
<< di1 << "." << endl;
}
需求
標頭: <complex>
命名空間: std