function of integral bound

2 views (last 30 days)
Anne
Anne on 2 May 2019
Answered: Torsten on 3 May 2019
I want to solve for b where (the integrands are more complex so that I can't compute the integral myself).
I tried the following
f1=@(x) 1;
f2=@(a,b) integral(f1,0,a+b);
f3=@(b) (integral2(f2,0,b,0,0)-1)^2;
fminunc(f3,0,options);
but I get the error message that A and B must be floating-point scalars.
I appreciate any help. Thanks.

Accepted Answer

Torsten
Torsten on 3 May 2019
function main
sol = fzero(@fun,1.0)
end
function res = fun(b)
amin = 0;
amax = b;
xmin = 0;
xmax = @(a) a+b;
f = @(x) ones(size(x));
res = integral2(@(a,x)f(x).*a,amin,amax,xmin,xmax) - 1.0;
end

More Answers (0)

Categories

Find more on Numerical Integration and Differential Equations in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!