MATH using numerical equation
Información
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Mostrar comentarios más antiguos
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 comentario
Jan
el 4 de Abr. de 2013
Please explain at first, why you assume, that there is a mistake. It would be a good strategy to share this knowledge with us.
Respuestas (0)
La pregunta está cerrada.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!