How to change ylabels in a for loop

14 views (last 30 days)
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.

Accepted Answer

Walter Roberson
Walter Roberson on 14 May 2012
For example,
ylabel(sprintf('Plot #%d', k))
It would be easier if you indicated how you want the different ylabel to look.
  4 Comments
Walter Roberson
Walter Roberson on 14 May 2012
Before loop:
ylabs = {'Mean', 'Std', '1st Moment', 'Allegro', 'Geraniums', 'Circularity', 'Disco'};
Inside loop:
ylabel(ylabs{k});
Lei
Lei on 14 May 2012
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!

Sign in to comment.

More Answers (0)

Categories

Find more on Line Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!