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

 Respuesta aceptada

KSSV
KSSV el 30 de Dic. de 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 comentarios

Fryderyk Kögl
Fryderyk Kögl el 19 de Sept. de 2018
And what if I already used the ylabel function to create a label for the y axis?
Stephen
Stephen el 13 de Abr. de 2023
No answer... of course not

Iniciar sesión para comentar.

Más respuestas (1)

Etiquetas

Preguntada:

el 30 de Dic. de 2016

Comentada:

el 13 de Abr. de 2023

Community Treasure Hunt

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

Start Hunting!

Translated by