MATLAB: Can i make Title and x and y label Bold

plot

Can i make Title and x and y label of a plot Bold and to increasr their font size

Best Answer

plot(randn(100,1));
title('Test','fontweight','bold','fontsize',16);
xlabel('Time','fontweight','bold','fontsize',16);