storing data in an array
Mostra commenti meno recenti
kindly help me how to store data in an empty array without using iterator index: e.g
a1=[]%empty array
for i=1:5
a1[i]= i;%with iterator
%without iterator ??
end
please. guide me and sorry if I could not write the question correctly!!
Risposte (1)
Andrei Bobrov
il 18 Gen 2012
eg:
i1 = 1:5;
a1 = i1;
OR
a1 = 1:5;
Categorie
Scopri di più su Introduction to Installation and Licensing 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!