MATLAB: How to move the “x10E3” indicator next to the Y axis

MATLABplottitle

I want to move the "x10E3" indicator next to the Y axis , since is overlapping the title.

Best Answer

It would likely be easier to simply add a second, blank, line to the title:
title({'CorrienteFugaFallaTierra\_Amp';''})
This will raise it by one line, so it will not overwrite the exponent at the top of the y-axis.
Related Question