gusucode.com > 《精通matlab 7》包括配套光盘 > 配套光盘里的程序附件/Ex-35/Ex3515.m

    %例35-15:计算二重积分。
syms x y
f = @(x,y)exp(-x.^2/3).*sin(x.^2+2*y); 
I=dblquad(f,-1,1,-1,1)