How can i solve the " Subscripted assignment dimension mismatch. Error in fi2 (line 12) u(:,1)= -sin(pi.*x) " ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
guetty abboud
el 11 de Dic. de 2017
Comentada: guetty abboud
el 11 de Dic. de 2017
here is the code :
a = input('Insert the value of a: ');
CFL = input('Insert the value of CFL: ');
dx = input('Insert the value of dx: ');
dt = (CFL * dx)/ abs(a);
lambda = (dt/dx)
tf = input('Insert final time : ');
N = input('Insert the value of N: ');
x = linspace(-1,1,N);
%choose test case:
tc= input('choose test case number : ');
if tc == 1
u(:,1)= -sin(pi.*x)
0 comentarios
Respuesta aceptada
ME
el 11 de Dic. de 2017
I have just run this code in R2016a and it did not produce an error when I chose a random set of input parameters. Was there a specific set of input parameters that produce this issue for you?
4 comentarios
ME
el 11 de Dic. de 2017
Just tried again after inputting the parameters you suggested with tc=1 and did not get the error.
Apologies for asking a stupid question but in your script I assume you have the 'end' that is missing from the code in your problem description?
Also, is there supposed to be more code after the below lines? If not then your script produces no u array unless tc=1.
if tc == 1
u(:,1)= -sin(pi.*x)
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!