give title on the left side of subplot

67 次查看(过去 30 天)
i need to give titles, is it possible to give title at the side of subplot as follows

采纳的回答

KSSV
KSSV 2016-12-30
You can make title as ylabel and achieve what you want..
x = linspace(0,10);
y1 = sin(x);
y2 = sin(5*x);
figure
subplot(2,1,1);
plot(x,y1)
ylabel('title1')
set(get(gca,'YLabel'),'Rotation',0)
subplot(2,1,2);
plot(x,y2)
ylabel('title2')
set(get(gca,'YLabel'),'Rotation',0)
  2 个评论
Fryderyk Kögl
Fryderyk Kögl 2018-9-19
And what if I already used the ylabel function to create a label for the y axis?

请先登录,再进行评论。

更多回答(1 个)

Tiezheng Song
Tiezheng Song 2019-1-29
I have found a great answer here. Hope this would be helpful!

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by