Control System Analysis Techniques course error
이전 댓글 표시
In the Time domain section of the course when I use the step function to plot the grpah it keeps saying i am wrong even though it is the exact same code and graph. Those anyone have anny solutions
below is the code
s = tf('s');
quadcopter_ol = 0.04133/(s + 0.01479);
controller = zpk(-5,0,100);
Task 1
step(quadcopter_ol)
댓글 수: 2
Is it look for step(controller) ?
s = tf('s');
quadcopter_ol = 0.04133/(s + 0.01479);
controller = zpk(-5,0,100);
step(controller)
Dunbarin
2026년 5월 3일 10:06
답변 (1개)
Hi @Dunbarin
If this topic is related to control systems, you are probably required to implement the controller on the open-loop quadcopter to form a closed-loop control system with the desired characteristics, such as the settling time.
s = tf('s');
% Open-loop system
quadcopter_ol = 0.04133/(s + 0.01479)
% Controller
controller = zpk(-5,0,100)
% Closed-loop system
closedLoop = feedback(controller*quadcopter_ol, 1)
% Step response of the closed-loop system
step(closedLoop), grid on
카테고리
도움말 센터 및 File Exchange에서 Stability Analysis에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


