MATLAB: How to write the xlabel and ylabel in required type and font

font size and type

i used the following command
xlabel(' users','FontSize',10,'FontType','Times New Roman')
ylabel('Throughput','FontSize',10,'FontType','Times New Roman')
title('Comparison','FontSize',10,'FontType','Times New Roman')
But unable to get the result. Could anyone please help me on this.

Best Answer

xlabel(' users','FontSize',10,'FontName','Times New Roman')
ylabel('Throughput','FontSize',10,'FontName','Times New Roman')
title('Comparison','FontSize',10,'FontName','Times New Roman')