求二重积分 \(\int_{1}^{2} {\int_{y}^{2} {xydxdy}}\)。
解 在命令窗口中输入
code.matlab
>> syms x y;
>> int(int(x*y,y,2),y,1,2)
ans =
9/8
求二重积分 \(\int_{1}^{2} {\int_{y}^{2} {xydxdy}}\)。
解 在命令窗口中输入
>> syms x y;
>> int(int(x*y,y,2),y,1,2)
ans =
9/8