Loop Through a Cell Array
440 次查看(过去 30 天)
显示 更早的评论
I have a csv file with the data (ignore whitespaces below only for readable):
State, Rain, Sunshine,
Indiana, 52, 25,
Kansas, 45, 22,
Georgia 35, 55,
Texas 22, 30,
Arizona 60, 12,
I need to create a for loop that will step through the cell array State:
State = {'Indiana','Kansas','Georgia','Texas','Arizona'}
for n = 1:numel(states)
and generate a separate plot for Rain vs. Sunshine for each state.
Thanks,
Amanda
2 个评论
Walter Roberson
2013-5-8
Do you have multiple entries for each state? Are they ordered somehow, such as there being one entry per state per period and the next occurrence of the state indicates the next period? It is difficult to generate a useful plot based on one data point.
采纳的回答
michael scheinfeild
2013-5-9
编辑:Walter Roberson
2013-5-9
for k=1:length(State)
curstate=State{k};
//now go on
plot(curstate(1),curstate(2),'ro')
end
2 个评论
Walter Roberson
2013-5-9
Are you wanting to produce one graph per state, or are you wanting to produce one graph that has one dot per state? There are other more efficient ways if you want one dot per state combined in a graph.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Multidimensional Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!