how to title each subplot and one Xlabel and one Ylable for all the subplots?

4 vues (au cours des 30 derniers jours)
Hello all, I am using for-loop to plot three different data source on each plot. To do so, I have written the following script. The question is, how to xlabel the bottom line plots only from (Jan -Dec instead 1 to 12) and on the y-axis the leftmost plots only (column one).I would also like to have one big label for the x-axis that shows Duration in months and one big y-axis label showing Temperature in degrees Centigrade.
X=1:12;
y1=randn(12,45);
y2=y1+2;
y3=y2+1;
figure(1)
for i=1:45
subplot(5,9,i);
plot(X,y1(:,i));
hold on
plot(X,y2(:,i));
plot(X,y3(:,i));
hold off
axis tight
title(['Subbasin', num2str(i)])
end
legend('EC','RAW RCM','CRCM')

Réponse acceptée

Image Analyst
Image Analyst le 19 Sep 2017

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by