MATLAB: How to display bigger font in console for single output

fontsizefprintfMATLAB

Hi all,
I've finished my script for image processing and I have a part of the code, where function fprintf prints values of SSIM, MSE and correlation factor. In the end of the script I'd like to print 'End of the script!' in bigger font, I tried to use
fprintf('End of the script!', 'FontSize', 14)
but it did not change size of the font in console. Is there any way, how to make it bigger for just this one output?

Best Answer

No.
You can change to bold, or you can change colors, but you cannot change font size.
Related Question