当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ norm()用法及代码示例


norm()函数在复杂头文件中定义。此函数用于返回复数z的平方大小。

用法:

template<class T> T norm (const complex<T>& z);

参数:


  • z:它代表给定的复数。

返回:它返回复数的平方大小。

以下示例程序旨在说明上述函数:-

示例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; 
}
输出:
The norm of (5,12) is 169

示例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; 
}
输出:
The norm of (4,3) is 25


相关用法


注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 norm() function in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。