MATLAB: Default figure title font weight

figure; title; fontweightMATLAB

Is there a way to change the default figure title font weight from 'bold' to 'normal' (Matlab2014b)?

Best Answer

Use below code in Command Window or script and title will be in 'normal' form
set(0,'DefaultAxesTitleFontWeight','normal');