How to change ylabels in a for loop

5 次查看(过去 30 天)
Hello everyone, I have a simple for loop to plot 7 different plots, but the ylabel should be different.
for k=1:7;
figure
bar(GAMMA_sta(k,:))
xlabel('Rock Types');
title( [ 'Statistics of Rocks', num2str(k)] );
end
Anyone knows how to change ylabel for each plot in a for loop please let me know. Thanks. My 7 plots should have 7 different ylabels.

采纳的回答

Walter Roberson
Walter Roberson 2012-5-14
For example,
ylabel(sprintf('Plot #%d', k))
It would be easier if you indicated how you want the different ylabel to look.
  4 个评论
Walter Roberson
Walter Roberson 2012-5-14
Before loop:
ylabs = {'Mean', 'Std', '1st Moment', 'Allegro', 'Geraniums', 'Circularity', 'Disco'};
Inside loop:
ylabel(ylabs{k});
Lei
Lei 2012-5-14
Hi Oleg and Walter,
Thanks for your guys help! They work fine!
I guess the idea is put my ylabels in a cell and then index them.
Cheers!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by