Clear Filters
Clear Filters

numerical integration

2 views (last 30 days)
rahman
rahman on 15 May 2011
Hi all
I want to numerically integral a function with four variable(f(x,y,z,v)).how can I use dblquad?
  4 Comments
Andrew Newell
Andrew Newell on 15 May 2011
Are your integral limits rectangular? e.g., xmin <= x <= xmax?
rahman
rahman on 15 May 2011
yes.all of four variables integration domain are limited.

Sign in to comment.

Accepted Answer

Andrew Newell
Andrew Newell on 15 May 2011
This turned out to be surprisingly tricky, but here is the solution. First, define a function
function fzv = integrateOverSecondPair(fun,x,y,zmin,zmax,vmin,vmax)
% DBLQUAD evaluates FUN for a vector x and scalar y. The backwards loop is
% Matt Fig's dynamic preallocation.
for ii=numel(x):-1:1
g = @(z,v) fun(x(ii),y,z,v);
fzv(ii) = dblquad(g,zmin,zmax,vmin,vmax);
end
Then use the commands
fzv = @(x,y) integrateOverSecondPair(@f,x,y,zmin,zmax,vmin,vmax);
fxyzv = dblquad(fzv,xmin,xmax,ymin,ymax);
  1 Comment
rahman
rahman on 15 May 2011
tnx Andrew
That work excellent! ;)

Sign in to comment.

More Answers (0)

Categories

Find more on Programming 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!