Main Content

beta

Description

example

B = beta(Z,W) returns the beta function evaluated at the elements of Z and W. Both Z and W must be real and nonnegative.

Examples

collapse all

Compute the beta function for integer arguments w=3 and z=1,...,10. Based on the definition, the beta function can be calculated as

B(z,3)=Γ(z)Γ(3)Γ(z+3)=(z-1)!2!(z+2)!=2z(z+1)(z+2).

Set the output format to rational to show the results as ratios of integers.

format rat
B = beta((1:10)',3)
B = 
       1/3     
       1/12    
       1/30    
       1/60    
       1/105   
       1/168   
       1/252   
       1/360   
       1/495   
       1/660   

Calculate the beta function for z = 0.05, 0.1, 0.2, and 1 within the interval 0w10. Loop over values of z, evaluate the function at each one, and assign each result to a row of B.

Z = [0.05 0.1 0.2 1];
W = 0:0.05:10;
B = zeros(4,201);
for i = 1:4
    B(i,:) = beta(Z(i),W);
end

Plot all of the beta functions in the same figure.

plot(W,B)
grid on
legend('$z = 0.05$','$z = 0.1$','$z = 0.2$','$z = 1$','interpreter','latex')
title('Beta function for $z = 0.05, 0.1, 0.2$, and $1$','interpreter','latex')
xlabel('$w$','interpreter','latex')
ylabel('$B(z,w)$','interpreter','latex')

Figure contains an axes object. The axes object with title Beta function for $z = 0.05, 0.1, 0.2$, and $1$, xlabel $w$, ylabel $B(z,w)$ contains 4 objects of type line. These objects represent $z = 0.05$, $z = 0.1$, $z = 0.2$, $z = 1$.

Input Arguments

collapse all

Input array, specified as a scalar, vector, matrix, or multidimensional array. The elements of Z must be real and nonnegative. Z and W must be the same size, or else one of them must be a scalar.

Data Types: single | double

Input array, specified as a scalar, vector, matrix, or multidimensional array. The elements of W must be real and nonnegative. Z and W must be the same size, or else one of them must be a scalar.

  • If Z or W is equal to 0, the beta function returns Inf.

  • If Z and W are both 0, the beta function returns NaN.

Data Types: single | double

More About

collapse all

Beta Function

The beta function is defined by

B(z,w)=01tz1(1t)w1dt=Γ(z)Γ(w)Γ(z+w).

The Γ(z) term is the gamma function

Γ(z)=0tz1etdt.

References

[1] Olver, F. W. J., A. B. Olde Daalhuis, D. W. Lozier, B. I. Schneider, R. F. Boisvert, C. W. Clark, B. R. Miller, and B. V. Saunders, eds., Chapter 5.12 Beta Function, NIST Digital Library of Mathematical Functions, Release 1.0.22, Mar. 15, 2018.

Extended Capabilities

C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.

Version History

Introduced before R2006a

See Also

| | |