Sdílet prostřednictvím


complex::real

Získá nebo nastaví skutečné část komplexního čísla.

Type real( ) const;
Type real(const Type& _Right);

Parametry

  • _Right
    Komplexní číslo, jehož reálnou hodnotu je extrahovat.

Vrácená hodnota

Reálná část komplexního čísla.

Poznámky

Pro komplexní číslo + bi, je reálná část nebo součást Re(a + bi) = a.

Příklad

// complex_class_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 = 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;
}
  

Požadavky

Záhlaví:<komplexní>

Obor názvů: std

Viz také

Referenční dokumentace

complex – třída