Sdílet prostřednictvím


reálná

Extrahuje skutečné část komplexního čísla.

template<class Type> 
   Type real( 
      const complex<Type>& _ComplexNum 
   );

Parametry

  • _ComplexNum
    Komplexní číslo, jehož skutečné části je extrahovat.

Vrácená hodnota

Reálná část komplexního čísla jako globální funkce.

Poznámky

Tato funkce šablony nelze použít k úpravě reálná část komplexního čísla.Změna reálná část, musí být nový komplexní číslo přiřazena hodnota komponenty.

Příklad

// complex_real.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 = real ( c1 );
   cout << "The real part of c1 is real ( c1 ) = "
        << dr1 << "." << endl;

   double di1 = imag ( c1 );
   cout << "The imaginary part of c1 is imag ( c1 ) = "
        << di1 << "." << endl;
}
  

Požadavky

Záhlaví:<komplexní>

Obor názvů: std