Vertical Title in subplot

15 visualizaciones (últimos 30 días)
RuiQi
RuiQi el 23 de En. de 2017
Comentada: RuiQi el 23 de En. de 2017
How can I add a vertical title in subplot like in the image below ? I want the title Car at the left side of the plot to be bigger. Ignore the bolded title Car on the top.

Respuesta aceptada

KSSV
KSSV el 23 de En. de 2017
figure
subplot(1,3,1)
plot(1:10)
ylabel({'\fontsize{20}Car','\fontsize{12}Recall'})
subplot(1,3,2)
plot(1:10)
ylabel({'\fontsize{12}Recall'})
subplot(1,3,3)
plot(1:10)
ylabel({'\fontsize{12}Recall'})
  1 comentario
RuiQi
RuiQi el 23 de En. de 2017
cool thanks as always !

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by