how can i pass the values to an array?
Mostra commenti meno recenti
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?
Risposta accettata
Più risposte (1)
Image Analyst
il 22 Set 2015
Or get rid of the "for":
i=1:10;
j=i*5;
Categorie
Scopri di più su Get Started with MATLAB in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!