how to title each subplot and one Xlabel and one Ylable for all the subplots?
4 次查看(过去 30 天)
显示 更早的评论
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')
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Subplots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!