blob: 03485c6c0bb70f7858f1305ce9990cc86a7cdaae (
plain)
1
2
3
4
5
6
7
8
|
clc;
s = %s;
Kp = 1000;disp(Kp,"value of Kp:");
printf("Kp is finite implies a type-0 system \n");
printf("The system is stable\n");
printf("Input is a step since Kp is specified\n");
E = 1/(1+Kp);
disp(E,"Steady state error =");
|