complex::imag
복소수의 허수 구성 요소를 추출합니다.
구문
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;
}
The complex number c1 = (4,3) The real part of c1 is c1.real ( ) = 4. The imaginary part of c1 is c1.imag ( ) = 3.
요구 사항
헤더: <complex>
네임스페이스: std