give title on the left side of subplot
22 views (last 30 days)
Show older comments

i need to give titles, is it possible to give title at the side of subplot as follows
0 Comments
Accepted Answer
KSSV
on 30 Dec 2016
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 Comments
Fryderyk Kögl
on 19 Sep 2018
And what if I already used the ylabel function to create a label for the y axis?
More Answers (1)
See Also
Categories
Find more on Axis Labels 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!