MATLAB: How i can change the values of Y axis

MATLAB

I have this figure
I want to changes values of y axis between 8.4 to 18.6
Thank u

Best Answer

gca.XLim = [8.4, 18.6];
Related Question