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

15 views (last 30 days)
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.

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 27 Jun 2009
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);

More Answers (0)

Products


Release

R2007a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!