Solving dependend double integrals

1 view (last 30 days)
Dear all,
i try to solve a double integral where the inner integralboundary x is dependend on the outer integrand y
int_0^1 int_0^(min(1-y,t+y)) f(x,y) dx dy %t is given parameter
I tried to use "dblquad"
Q = dblquad(G,0,1,0,min(1-y,t+y)) %t is given parameter
but he didn´t recognize the y in that case.
Since this is my first question please tell me if something is unclear.
Thank you very much for your help.
Frieder

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 6 Dec 2011
try and read about quad2d
f = @(x,y)....
Q = quad2d(f,0,1,0,@(y)min(1-y,t+y)))

More Answers (0)

Community Treasure Hunt

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

Start Hunting!