Matlab里y=[y,C*x];这句代码是什么意思?
r=20.4;
numo=[1.875e61.562e6];deno=[15420421364];
numh=0.002;denh=1;
[num,den]=feedback(numo,deno,numh,denh);
[A,B,C,D]=tf2ss(num,den);
Tf=5;h=0.02;
x=[zeros(length(A),1)];y=0;t=0;
fori=1:Tf/h
K1=A*x+B*r;
K2=A*(x+h*K1/2)+B*r;
K3=A*(x+h*K2/2)+B*r;
K4=A*(x+h*K3)+B*r;
x=x+h*(K1+2*K2+2*K3+K4)/6;
y=[y,C*x];t=[t;t(i)+h];
end
plot(t,y)