I have error when try to plot 3D for hyperbolic equation

2 visualizaciones (últimos 30 días)
lulu
lulu el 22 de En. de 2021
Editada: Deepak Meena el 26 de En. de 2021
hello every one , I have a model with u_t+u_x=0, the code is working but when I tried to plot it as 3d I got error. Please I want to understand the problem and solve it. thank you.
I attached my file.
  1 comentario
Athrey Ranjith Krishnanunni
Athrey Ranjith Krishnanunni el 23 de En. de 2021
First of all, your file does not have a valid MATLAB script name because it has spaces and parantheses in it. I removed them, but please rename it or you won't be able to run it.
Further, you have defined X and T as
X=linspace(0,0.001,1);
T=linspace(0,0.1,500);
when you probably want
X = 0:0.001:1;
T = 0:0.1:500;
or
X = linspace(0,1,1001);
T = linspace(0,500,5001);
Also, you had an error in the 3D plot function surf because your third input (ur) is supposed to vary over both the first (X) and the second inputs (T), and therefore necessarily need to be a 2-D matrix. In your case, ur seems to only vary with X.

Iniciar sesión para comentar.

Respuestas (1)

Deepak Meena
Deepak Meena el 26 de En. de 2021
Editada: Deepak Meena el 26 de En. de 2021
Hi Iman,
As the ARK mentioned in the comment, the file does not have valid MATLAB script name.I tried to run the code I am getting the following error:
Error using conturningRE (line 15)
mu should<1.0!
Also, for the communtity members it is difficult to debug large code ,so It would be helpful for us if you specify where you are having trouble and what error are you getting.
Let us know what error you are having.
Thanks

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by