बीटा (), बीटाफ () और बीटाल () फ़ंक्शन सी ++ के मानक टेम्पलेट लाइब्रेरी में अंतर्निहित कार्य हैं। इन फ़ंक्शन का उपयोग दो सकारात्मक वास्तविक संख्याओं के बीटा फ़ंक्शन की गणना करने के लिए किया जाता है।
कार्य बीटा () , बीटाफ () और बेताल () सी ++ के मानक टेम्पलेट पुस्तकालय में अंतर्निहित कार्य हैं। इन फ़ंक्शन का उपयोग दो सकारात्मक वास्तविक संख्याओं के बीटा फ़ंक्शन की गणना करने के लिए किया जाता है।
$B(x,y)=\int_{0}^{1}t^{(x-1)}(1-t)^{(y-1)}dt$
बीटा ()
बीटा () फ़ंक्शन का उपयोग डेटा प्रकार डबल के मूल्यों से निपटने के लिए किया जाता है यानी यह डबल प्रकार के पैरामीटर को स्वीकार करता है और रिटर्न डबल मान होता है।
सिंटैक्स
double beta(double x, double y)
पैरामीटर
x is a double value that gives the value of x in the beta function. y is a double value that gives the value of y in the beta function.
एक दोहरा मान देता है जो बीटा फ़ंक्शन परिणाम है।
उदाहरण
#include <bits/stdc++.h> using namespace std; int main(){ double x = 4.93; double y = 5.01; double result = beta(x, y); cout<<"B("<<x<<" , "<<y<<") = "<<result<<"\n"; return 0; }
आउटपुट
B(4.93 , 5.01) = 0.00166054
बेटाफ ()
बीटाफ () फ़ंक्शन का उपयोग डेटा प्रकार फ्लोट के मूल्यों से निपटने के लिए किया जाता है यानी यह फ्लोट प्रकार के पैरामीटर को स्वीकार करता है और रिटर्न फ्लोट मान होता है।
सिंटैक्स
float beta(float x, float y
पैरामीटर
x is a float value that gives the value of x in the beta function. y is a float value that gives the value of y in the beta function.
रिटर्न एक फ्लोट मान जो बीटा फ़ंक्शन परिणाम है।
उदाहरण
#include <bits/stdc++.h> using namespace std; int main(){ float x = 0.31; float y = 3.99; float result = betaf(x, y); cout<<"B("<<x<<" , "<<y<<") = "<<result<<"\n"; return 0; }
आउटपुट
B(0.31 , 3.99) = 1.93395
betal()
बेताल () फ़ंक्शन का उपयोग डेटा प्रकार लॉन्ग डबल के मूल्यों से निपटने के लिए किया जाता है यानी यह लंबे डबल प्रकार के पैरामीटर को स्वीकार करता है और एक लंबा डबल मान देता है।
सिंटैक्स
लॉन्ग डबल बीटा (लॉन्ग डबल एक्स, लॉन्ग डबल वाई)
पैरामीटर
x is a long double value that gives the value of x in the beta function. y is a long double value that gives the value of y in the beta function.
रिटर्न एक लंबा दोहरा मान जो बीटा फ़ंक्शन परिणाम है।
उदाहरण
#include <bits/stdc++.h> using namespace std; int main(){ long double x = 3453.35451; long double y = 9862.89651; long double result = betaf(x, y); cout<<"B("<<x<<" , "<<y<<") = "<<result<<"\n"; return 0; }
आउटपुट
B(3453.35 , 9862.9) = 4.39947e-3312