Matlab计算二重积分求助。。

发布于2022-02-19 09:36:32

小弟要对q=dblquad('((Wa-x).^2+(6-y).^2+36).^-1.5',-30,30,-40,40)进行二重积分,x、y为积分变量;但是Wa是个常量,我想在积分结果里面保留Wa,不知怎么解决啊?

1个回答
admin
网友回答2022-02-19
这个要用符号积分,不过matlab积不出结果,符号运算能力弱  int(int(((Wa-x).^2+(6-y).^2+36).^-1.5,x,-30,30),y,-40,40) Warning: Explicit integral could not be found.  Warning: Explicit integral could not be found.    ans =   int(int(1/((y - 6)^2 + (Wa - x)^2 + 36)^(3/2), x = -30..30), y = -40..40)   mathematics可以算出结果 搜狗问问

回到
顶部