La función norm() se define en el archivo de encabezado complejo . Esta función se usa para devolver la magnitud al cuadrado del número complejo z.
Sintaxis:
template<class T> T norm (const complex<T>& z);
Parámetro:
- z: Representa el número complejo dado.
Devolución: Devuelve la magnitud al cuadrado del número complejo.
Los siguientes programas ilustran la función anterior: –
Ejemplo 1:-
// C++ program to demonstrate // example of norm() function. #include <bits/stdc++.h> using namespace std; // driver function int main () { // initializing the complex: (5.0+12.0i) complex<double> complexnumber (5.0, 12.0); // use of norm()function cout << "The norm of " << complexnumber << " is "; cout << norm(complexnumber) << endl; return 0; }
Producción:
The norm of (5,12) is 169
Ejemplo 2:-
// C++ program to demonstrate // example of norm() function. #include <bits/stdc++.h> using namespace std; // driver function int main () { // initializing the complex: (4.0+3.0i) complex<double> complexnumber (4.0, 3.0); // use of norm()function cout << "The norm of " << complexnumber << " is "; cout << norm(complexnumber) << endl; return 0; }
Producción:
The norm of (4,3) is 25
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