MATLAB: How to move the scientific notation block so that it does not interfere with the title in MATLAB 7.4 (R2007a)

figureinterfereinterferenceMATLABnotationoverlapoverlappingplotscientifictitley axis

I have a figure where the y-axis is represented in scientific notation. The placement of the scientific notation block at the top of the y-axis interferes with the title of the plot. I would like to be able to move the scientific notation to a different location.

Best Answer

There is no way to move the scientific notation block to a different location.
As a workaround, create a two-line title where the second line is an empty string to avoid having the title overlap the scientific notation block:
myTitle = { 'This is My Title' '' } ;
figure;
plot(...);
title(myTitle);