MATLAB: Integration of a function of two variables in which the limits of integral on one are functions of the other

intintegralintegral2MATLAB

I want to integrate the function f(x,theta)={1-exp[-alpha/sin(theta)]} over x and theta. x has definite limits, but the limits of the integral over theta, are functions of x. So, I don't think I can use intergral2. Any suggestions?

Best Answer

"q = integral2(fun,xmin,xmax,ymin,ymax) approximates the integral of the function z = fun(x,y) over the planar region xmin ≤ x ≤ xmax and ymin(x) ≤ y ≤ ymax(x)."
The limits on y can be functions of x. The "Evaluate Double Integral in Polar Coordinates" example on that page includes an example where the upper limit on r is a function of theta.