Info

此问题已关闭。 请重新打开它进行编辑或回答。

MATH using numerical equation

1 次查看(过去 30 天)
reem
reem 2013-4-4
关闭: MATLAB Answer Bot 2021-8-20
How can I represent this equation using MATLAB ( Numerical Solution)
The equation
(^2 f(x,y)/ x^2)-(2 ^2 f(x,y)/ y^2)+2f=2*cosy
Where f(0,y)=0 ; ∂f/ ∂x (0,0)=0 ; ∂f/ ∂y(0,0)=0
This is my program
Please tell me what is the mistake in my program
clear; clc;
Vx(1,:)=0;
Vy(:,1)=0;
h=0.1; f(1,:)=0;
for y=0:10
for i=1:10
for j=1:10
Vx(i+1,j+1)=(2.*cos(y).*h)+Vx(i,j);
Vy(i+1,j+1)=h*f(i,j)+Vy(i,j);
f(i+1,j)=f(i,j)+h*Vx(i,j);
f(i,j+1)=f(i,j)+h*Vy(i,j);
end
end
end
plot(f); grid
  1 个评论
Jan
Jan 2013-4-4
Please explain at first, why you assume, that there is a mistake. It would be a good strategy to share this knowledge with us.

回答(0 个)

此问题已关闭。

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by