Scroll to navigation

std::real(std::complex)(3) C++ Standard Libary std::real(std::complex)(3)

NAME

std::real(std::complex) - std::real(std::complex)

Synopsis


Defined in header <complex>
template< class T > (until C++14)
T real( const std::complex<T>& z );
template< class T > (since C++14)
constexpr T real( const std::complex<T>& z );
float real( float z );


template< class DoubleOrInteger > (since C++11)
double real( DoubleOrInteger z ); (1) (until C++14)


long double real( long double z ); (2)
constexpr float real( float z );


template< class DoubleOrInteger > (since C++14)
constexpr double real( DoubleOrInteger z );


constexpr long double real( long double z );


1) Returns the real component of the complex number z, i.e. z.real().


2) Additional overloads are provided for float, double, long double,
and all integer types, which are treated as complex numbers with zero (since C++11)
imaginary component.

Parameters


z - complex value

Return value


The real component of z.

See also


real accesses the real part of the complex number
(public member function)
imag returns the imaginary component
(function template)

2022.07.31 http://cppreference.com