The size of the indicated variable or array appears to be changing with each loop iteration
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
vishnuvardhan naidu tanga
el 10 de Dic. de 2019
Respondida: JESUS DAVID ARIZA ROYETH
el 10 de Dic. de 2019
hello, i am trying to model an iteration loop in matlab, and i am getting the following error 'The size of the indicated variable or array appears to be changing with each loop iteration'. is there a way to solve it?
mz code is:
for i = 2:n
CR = (P_out/P_in)^(1/(i+1));
P(1) = P_in;
P(i) = CR*P(i-1);
P(i+1) = CR*P(i);
end
0 comentarios
Respuesta aceptada
JESUS DAVID ARIZA ROYETH
el 10 de Dic. de 2019
P=zeros(1,n+1);
P(1) = P_in;
for i = 2:n
CR = (P_out/P_in)^(1/(i+1));
P(i) = CR*P(i-1);
P(i+1) = CR*P(i);
end
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements 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!