इस लेख में हम C++ STL में जटिल संख्याओं के लिए कार्य, वाक्य रचना और std::exp() फ़ंक्शन के उदाहरणों पर चर्चा करेंगे।
std::exp() क्या है?
जटिल संख्याओं के लिए std::exp() फ़ंक्शन C++ STL में एक इनबिल्ट फ़ंक्शन है, जिसे
सिंटैक्स
exp(complex <T> num);
पैरामीटर
फ़ंक्शन निम्नलिखित पैरामीटर को स्वीकार करता है -
- संख्या - यह एक सम्मिश्र संख्या है जिसका घातांक हम खोजना चाहते हैं।
रिटर्न वैल्यू
यह फ़ंक्शन संख्या का घातांकीय मान लौटाता है।
उदाहरण
इनपुट
exp(complex<double> complexnumber(-1.0, 0.0));
आउटपुट
The result is : (-1, 0) is (0.367879, 0)
उदाहरण
#include <bits/stdc++.h> using namespace std; int main(){ complex<double> complexnumber(-1.0, 0.0); cout<<"The result is : " << complexnumber<< " is "<< exp(complexnumber)<< endl; return 0; }
आउटपुट
The result is : (-1, 0) is (0.367879, 0)
उदाहरण
#include <bits/stdc++.h> using namespace std; int main(){ complex<double> complexnumber(0.0, 1.0); cout<<"The result is : " << complexnumber<< " is "<< exp(complexnumber)<< endl; return 0; }
आउटपुट
The result is : (0, 1) is (0.540302,0.841471)