give title on the left side of subplot

i need to give titles, is it possible to give title at the side of subplot as follows

 Accepted Answer

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

And what if I already used the ylabel function to create a label for the y axis?
No answer... of course not

Sign in to comment.

Asked:

on 30 Dec 2016

Commented:

on 13 Apr 2023

Community Treasure Hunt

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

Start Hunting!