std::complex::imag

primary template complex<T>
1
T imag() const;
(1) (until C++14)
1
constexpr T imag() const;
(1) (since C++14)
1
void imag( T value );
(2)
specialization complex<float>
1
float imag() const;
(1) (until C++11)
1
constexpr float imag();
(1) (since C++11)
(until C++14)
1
constexpr float imag() const;
(1) (since C++14)
1
void imag( float value );
(2)
specialization complex<double>
1
double imag() const;
(1) (until C++11)
1
constexpr double imag();
(1) (since C++11)
(until C++14)
1
constexpr double imag() const;
(1) (since C++14)
1
void imag( double value );
(2)
specialization complex<long double>
1
long double imag() const;
(1) (until C++11)
1
constexpr long double imag();
(1) (since C++11)
(until C++14)
1
constexpr long double imag() const;
(1) (since C++14)
1
void imag( long double value );
(2)

Accesses the imaginary part of the complex number.

1) Returns the imaginary part.
2) Sets the imaginary part to value.

Parameters

value - the value to set the imaginary part to

See also

returns the imaginary component
(function template)
accesses the real part of the complex number
(public member function)
doc_CPP
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.