জটিল সংখ্যার পোলার ফাংশন একটি জটিল সংখ্যা ফেরাতে ব্যবহৃত হয়।
পোলার() ফাংশন 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)