hi , I've got code shows more than the result because of the Loop . The question now is how do I store the result in array in order to call this values [a] again
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
mohammed elmenshawy
el 9 de Ag. de 2016
Comentada: mohammed elmenshawy
el 9 de Ag. de 2016
n=[4;5;6]; phi=[3;4;5]; s=[2;3;4]; o=3; for nn=1:o for ph=1:o for ss=1:o n(nn) phi(ph) s(ss) a=n(nn)+phi(ph)+s(ss) end end end
Respuesta aceptada
Moe_2015
el 9 de Ag. de 2016
Do you just want all the values of "a" stored in a 1D array? If so you can do this:
n=[4;5;6]; phi=[3;4;5]; s=[2;3;4]; o=3;
index = 0;
for nn=1:o
for ph=1:o
for ss=1:o
index = index+1;
a(index)=n(nn)+phi(ph)+s(ss);
end
end
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!