सम्मिश्र संख्याओं के ध्रुवीय फलन का उपयोग सम्मिश्र संख्या को वापस करने के लिए किया जाता है।
ध्रुवीय () फ़ंक्शन को c ++ में जटिल हेडर फ़ाइल में परिभाषित किया गया है। यह एक सम्मिश्र संख्या का परिमाण और कला कोण लेता है और इन मानों का उपयोग करके एक सम्मिश्र संख्या उत्पन्न करता है।
सिंटैक्स
polar(mag, phase);
पैरामीटर - इसके लिए दो मान लगते हैं पैरामीटर, चरण और उत्पन्न होने वाली सम्मिश्र संख्या का परिमाण।
वापसी मूल्य - फ़ंक्शन एक सम्मिश्र संख्या देता है।
polar(0.2, 0.5) -> (0.175517,0.0958851)
उदाहरण
#include<iostream> #include>complex.h> using namespace std; int main () { cout<<"\t\tRUN 1\n"; cout<<"Complex number with magnitude: 5.2 and phase angle: 1.6 is "; cout<<polar(5.2,1.6)<<endl; cout<<"\t\tRUN 2\n"; cout<<"Complex number with magnitude: 0.5 and phase angle: 0.2 is "; cout<<polar(0.5,0.2)<<endl; cout<<"\t\tRUN 3\n"; cout<<"Complex number with magnitude: 0.2 and phase angle: 0.5 is "; cout<<polar(0.2,0.5)<<endl; return 0; }
आउटपुट
RUN 1 Complex number with magnitude: 5.2 and phase angle: 1.6 is (-0.151838,5.19778) RUN 2 Complex number with magnitude: 0.5 and phase angle: 0.2 is (0.490033,0.0993347) RUN 3 Complex number with magnitude: 0.2 and phase angle: 0.5 is (0.175517,0.0958851)