I\'ve created a plot in Matlab, but unfortunately the side of the plot is cut off by the plotting window. Here is the code that I\'ve used to create the plot:
Try to set the OuterPosition of the plot.
OuterPosition
set(gca,'OuterPosition',[0.2 0.2 0.8 0.4]);
The image below shows the difference between the two:
Here is the relevant MathWorks help page.