MATLAB: Vertical Title in subplot

plot

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.

Best Answer

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'})
Related Question