complex::imag
Récupère le composant imaginaire d'un nombre complexe.
Type imag( ) const;
Type imag(const Type& _Right);
Paramètres
- _Right
Un nombre complexe dont la valeur imaginaire doit être récupérée.
Valeur de retour
Partie imaginaire du nombre complexe.
Notes
Pour un nombre complexe a + Bi, la partie imaginaire ou le composant est Im (a + Bi) = B.
Exemple
// 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;
}
Configuration requise
en-tête : <complex>
l'espace de noms : DST