storing data in an array
显示 更早的评论
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!!
回答(1 个)
Andrei Bobrov
2012-1-18
eg:
i1 = 1:5;
a1 = i1;
OR
a1 = 1:5;
类别
在 帮助中心 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!