Borrar filtros
Borrar filtros

About a for loop matrix

1 visualización (últimos 30 días)
Ming Ki Lee
Ming Ki Lee el 25 de En. de 2017
Editada: Walter Roberson el 25 de En. de 2017
for k=2:mx-1
for j=2:mx-2
A(k,j-1) = (D*dt)/dx^(2)+U*dt/(2*dx);
break
end
break
end
I set there is a zeros matrix with mx column and mx row and I want to find the points (2,1), (3,2), (4,3), (5,4) etc. Now it only show 1 column at (2,1) point. But if I delete two breaks, it will keep loop the second loop. How can I fix this???

Respuesta aceptada

Walter Roberson
Walter Roberson el 25 de En. de 2017
Editada: Walter Roberson el 25 de En. de 2017
for k=2:mx-1
j=k+2;
A(k,j-1) = (D*dt)/dx^(2)+U*dt/(2*dx);
end

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by