La función imag() se define en el archivo de encabezado complejo . La función imag() se usa para encontrar la parte imaginaria del número complejo.
Sintaxis:
template<class T> T imag(const complex<T>& z);
Parámetro: Este método toma un parámetro obligatorio z: que representa el número complejo dado.
Devolución: Devuelve la parte imaginaria del número complejo.
Los siguientes programas ilustran la función anterior: –
Ejemplo 1:-
// C++ program to demonstrate // example of imag() function. #include <bits/stdC++.h> using namespace std; // Driver function int main() { // defines the complex number: (20.3 + 4.9i) complex<double> imagpart(20.3, 4.9); // print the complex number cout << "Complex Number = " << imagpart << endl; // prints the imag part using the imag function cout << "Imag part of the complex number is =" << imag(imagpart) << endl; return 0; }
Producción:
Complex Number = (20.3,4.9) Imag part of the complex number is =4.9
Ejemplo 2:-
// C++ program to demonstrate // example of imag() function. #include <bits/stdC++.h> using namespace std; // driver function int main() { // defines the complex number: (2 + 2i) complex<double> imagpart(2, 2); // print the complex number cout << "Complex Number = " << imagpart << endl; // prints the imag part using the imag function cout << "Imag part of the complex number is =" << imag(imagpart) << endl; return 0; }
Producción:
Complex Number = (2,2) Imag part of the complex number is =2
Publicación traducida automáticamente
Artículo escrito por bansal_rtk_ y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA