MATLAB: I want to know how can i increase the dimensions of y- axis in the plot, the plot as a well as code are as given below i want increase scaling upto -15*10^-3 please help me out

optimal load frequency control

t = 0 : 0.02 : 10; [y,x] = step(Af,BPL,C,D,1,t); plot(t,-x(:,3)),grid;

Best Answer

t = 0 : 0.02 : 10;
[y,x] = step(Af,BPL,C,D,1,t);
plot(t,-x(:,3))
grid;
set(gca,'YLim',[-2.5*10^-3 15*10^-3])