Use the index in a FOR loop for a string
4 次查看(过去 30 天)
显示 更早的评论
How do I make 50 plots (in separate figures) using the following format:
for i = 1:50
figure('name','Hurricane "i"')
scatter(x,y,10,z"i");
title('Hurricane "i"');
end
e.g. I want graphs like scatter(x,y,10,z36) with the title of "Hurricane 36". Thanks for your help in advance.
0 个评论
采纳的回答
Stephen23
2017-4-11
@Mamali: you should put your data into one array (either an matrix, and ND array, or a cell array) and using indexing. Do not try to access variable names dynamically:
0 个评论
更多回答(1 个)
John Osborne
2017-4-10
编辑:John Osborne
2017-4-10
Try
figure(i)
%plotting commands
title(['Hurricane ' num2str(i)])
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!