이 기사에서는 C++ STL에서 norm() 함수의 작동, 구문 및 예제에 대해 논의할 것입니다.
norm()이란 무엇입니까?
norm() 함수는
복소수의 노름 값은 숫자의 크기의 제곱입니다. 따라서 간단히 말해서 이 함수는 허수와 실수를 포함하여 복소수의 제곱 크기를 찾습니다.
구문
double norm(ArithmeticType num);
매개변수
이 함수는 다음 매개변수를 허용합니다. -
- 숫자 − 작업하려는 복잡한 값.
반환 값
이 함수는 num의 표준 값을 반환합니다.
예시
입력
complex<double> comp_num(6.9, 2.6); norm(comp_num);
출력
The value of norm of (6.9,2.6) is 54.37
예시
#include <bits/stdc++.h> using namespace std; int main (){ complex<double> comp_num(6.9, 2.6); cout<<"The value of norm of " << comp_num<< " is "; cout << norm(comp_num) << endl; return 0; }
출력
The value of norm of (6.9,2.6) is 54.37
예시
#include <bits/stdc++.h> using namespace std; int main (){ complex<double> comp_num(2.4, 1.9); cout<<"The value of norm of " << comp_num<< " is "; cout << norm(comp_num) << endl; return 0; }
예시
The value of norm of (2.4,1.9) is 9.37