Numerical integration

I want to integrate numerically f(x,y) with respect to x keeping y constant. Can quad do it with some modifications?
Any other ideas??

Réponses (2)

Andrei Bobrov
Andrei Bobrov le 27 Juil 2011

0 votes

y = 5; %eg: y-constant
quad(@(x)f(x,y),xmin,xmax)

4 commentaires

R yan
R yan le 27 Juil 2011
My aim to get the value of the integral in terms of y. So that it can be again integrated with respect to y in the next step.
I have tried symbolic it works. But I need it numerical.
Andrei Bobrov
Andrei Bobrov le 27 Juil 2011
doc dblquad
q = dblquad(f,xmin,xmax,ymin,ymax)
R yan
R yan le 28 Juil 2011
you mean to say:
int(int(f(x,y),x,a,b),y,a,b)=dblquad('f(x,y)',a,b,a,b)
valid for all f(x,y)?
Mike Hosea
Mike Hosea le 2 Août 2011
Not for *all* f(x,y), but almost certainly for *your* f(x,y). See Fubini's theorem, for example.

Connectez-vous pour commenter.

Innocent
Innocent le 2 Août 2011

0 votes

Hi Yan, i did post an example of simple code under newsgroup follow the link bellow to check it out.

Catégories

Question posée :

le 27 Juil 2011

Community Treasure Hunt

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

Start Hunting!

Translated by