figure
hold on
for ct = 1:length(C)
% Select a system from the LTI array
sys = clsys(:,:,ct);
sys.Name = ['C=',num2str(C(ct))];
sys.InputName = 'Reference';
% Plot step response
stepplot(sys,20);
end
legend('show','location','southeast')
7 PID Controller Tuning