how to split a forloop into columns

2 visualizaciones (últimos 30 días)
A123456
A123456 el 6 de En. de 2016
Comentada: Star Strider el 6 de En. de 2016
I have written a code which contains a for loop but I need it to be seperated into columns. This is the code, however I would like each value of N to be a new column. Is there a way of doing that?
for N=1:12;
for m=1:12;
if mod(N, m)==0
disp '1'
else disp '0'
end
end
end

Respuesta aceptada

Star Strider
Star Strider el 6 de En. de 2016
I am not certain what you want to do. See if this produces what you want:
N = 1:12;
m = 1:12;
[Nmat,mmat] = meshgrid(N,m);
modmat = mod(Nmat,mmat)==0;
Result = [Nmat(:) mmat(:) modmat(:)];
  8 comentarios
A123456
A123456 el 6 de En. de 2016
Thanks for that, your help was great!
Star Strider
Star Strider el 6 de En. de 2016
As always, my pleasure!

Iniciar sesión para comentar.

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