how can i pass the values to an array?
Mostrar comentarios más antiguos
for i=1:10
j=i*5:
end
output will be:
5,
10,
......
50.
how can i pass these output values(5.....50) in an array?
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 22 de Sept. de 2015
Or get rid of the "for":
i=1:10;
j=i*5;
Categorías
Más información sobre Operators and Elementary Operations en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!