Subplot Titles Don't Appear
59 ビュー (過去 30 日間)
古いコメントを表示
Hi, I just have a simple question about subplot titles. I have the following code-
figure
subplot(1,2,1)
[hax1,hline1] = plot....
title('Mean Value')
subplot(1,2,2)
[hax2,hline2] = plot....
title('95% Prediction Interval Range')
When I do this the titles don't show up. Do any of you recognize something I'm overlooking with this?
Thanks!
0 件のコメント
採用された回答
Azzi Abdelmalek
2016 年 5 月 9 日
t=0:0.1:10;
y=sin(t)
figure
subplot(1,2,1)
hax1 = plot(t,y)
title('Mean Value')
subplot(1,2,2)
hax2= plot(t,2*y)
title('95% Prediction Interval Range')
0 件のコメント
その他の回答 (1 件)
Walter Roberson
2016 年 5 月 9 日
The outputs you show for plot() tell me that you are not using plot(), that instead you are using plotyy() -- plot() does not return the axes but plotyy() does.
My testing in R2016a suggests that after plotyy() calls, the current axes is not changed -- though I did not test the case where you pass an axes in to plotyy() as the first argument.
Anyhow, your code must not be what you show, and what your code actually has might be important for resolving the situation.
The safest thing to do is pass the appropriate axes to title() as the first argument.
title(hax1[1], 'Mean value')
参考
カテゴリ
Help Center および File Exchange で Two y-axis についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!