complex::imag
Extrae el componente imaginario de un número complejo.
Sintaxis
T imag( ) const;
T imag(const T& _Right);
Parámetros
- _Right
Un número complejo cuya valor imaginario va a extraerse.
Valor devuelto
Parte imaginaria del número complejo.
Comentarios
Para un número complejo a + bi, el componente o parte imaginaria es 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;
}
El número complejo c1 = (4,3) La parte real de c1 es c1.real ( ) = 4.La parte imaginaria de c1 es c1.imag ( ) = 3.
Requisitos
Encabezado: <complex>
Espacio de nombres: std