Solve for integral limit
问题 I need to find the limit of an integral in a numerical way, knowing the result of that integral. What I need to solve is: As you can see, that is the incomplete beta function. I know a , b and c . And the integral limits are from 0 to x . I need to find x . 回答1: The fzero function can solve all sorts of nonlinear equations. First, calculate the incomplete beta function as a function of X (I subtracted the c because we want to find the x that makes Y=0 ): Y=@(X) beta(a,b)*betainc(X,a,b)-c or,