
ControlSystemDesigner displays empty graphs
조회 수: 1(최근 30일)
표시 이전 댓글
I am trying to use the function, controlSystemDesigner for my control systems class but unfortunately it is not working. I have used it several times before and it would display the graphs just fine but as of today it will load and open a new window however it just displays empty graphs and gives me an error code as shown below. Any assistance is greatly appreciated. I am using Matlab Online for reference.
G = tf([1],[1 2 -3])
controlSystemDesigner(G)

댓글 수: 0
답변(1개)
Sam Chak
2023년 3월 21일
편집: Sam Chak
2023년 3월 21일
Update: The Control System Designer App can be opened. The Toolbox and the function have no issue. Have you tried whether it works after restarting your computer?

The controlSystemDesigner() is under the Control System Toolbox. Can you check if other tools work? For example, the pidtune() function.
G = tf([1], [1 2 -3])
Gc = pidtune(G, 'PIDF')
Gcl = feedback(Gc*G, 1)
step(Gcl)
댓글 수: 2
Sam Chak
2023년 3월 21일
Hi @Fernando Lopez, the Control System Designer App can be opened on MATLAB Online. Have you tried whether it works after restarting your computer?
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!