matlab二重定积分_matlab求二重积分

本文详细介绍了如何使用MATLAB进行二重定积分的计算,包括基本语法、函数用法及示例。通过实例展示了`dblquad`函数的使用,用于计算特定区域内的二重积分,并探讨了误差控制和处理边界奇异问题的方法。
摘要由CSDN通过智能技术生成

计算量不小 区间不宜过大

zlabel('f5')

title('f5')

......................

...........................

matlab求二重积分

g = @(x,y)

1.*((x-2.5).^2+(y-1).^2<=1)+0.*((x-2.5).^2+(y-1).^2>1);

f = @(x,y)

1.*((x-2).^2+(y-1).^2<=1)+0.*((x-2).^2+(y-1).^2>1);

z = @(x,y) f(x,y)+g(x,y)

Q = dblquad(z,0,4,-1,3)

...........

% 以下代码在7.1版以上均可运行。

r=1;

a=2; % 输入a的值

Phi=3; % 输入Phi的值

f1 = @(Theta_2,Phi_2) sin(Theta_2).*sin(Theta_2).*cos(Phi_2);

f2 = @(Theta_2,Phi_2) sqrt(r^2+a^2-2*r*a.*sin(Theta_2).*cos(Phi-Phi_2));

f3 = @(Theta_2,Phi_2) f1(Theta_2,Phi_2)./f2(Theta_2,Phi_2);

f5 = dblquad(f3,0,pi,0,pi)

......................

...........................

..................

dblquad-

Numerically evaluate double

integral over rectangle

Syntax

q = dblquad(fun,xmin,xmax,ymin,ymax)

q = dblquad(fun,xmin,xmax,ymin,ymax,tol)

q = dblquad(fun,xmin,xmax,ymin,ymax,tol,method)

Description

q = dblquad(fun,xmin,xmax,ymin,ymax)

callsthe quad

function to evaluatethe double integral fun(x,y) over the

rectangle xmin<= x <= xmax,

ymin <=y <= ymax.

fun isa function handle. See Function

Handles in the MATLAB Programming documentationfor more

information. fun(x,y) must accept a vector x anda

scalar y and return a vector of values of

theintegrand.

Parameterizing

Functions, in the MATLAB Mathematicsdocumentation, explains how

to provide additional paramet

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值