ControlSystemDesigner displays empty graphs

조회 수: 10 (최근 30일)
Fernando Lopez
Fernando Lopez 2023년 3월 21일
댓글: Sam Chak 2023년 3월 21일
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)

답변 (1개)

Sam Chak
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])
G = 1 ------------- s^2 + 2 s - 3 Continuous-time transfer function.
Gc = pidtune(G, 'PIDF')
Gc = 1 s Kp + Ki * --- + Kd * -------- s Tf*s+1 with Kp = 35.8, Ki = 24.8, Kd = 8.98, Tf = 0.0194 Continuous-time PIDF controller in parallel form.
Gcl = feedback(Gc*G, 1)
Gcl = 499.4 s^2 + 1871 s + 1281 ------------------------------------------- s^4 + 53.61 s^3 + 599.7 s^2 + 1716 s + 1281 Continuous-time transfer function.
step(Gcl)
  댓글 수: 2
Fernando Lopez
Fernando Lopez 2023년 3월 21일
Hello @Sam Chak, thank you for responding. I input the code you sent and it did indeed work perfectly. Attemtped running controlSystemDesigner once more but still seem to be having the same issue. Have been trying to search the help center but I can not seem to find any other example of an issue similar to mine.
Sam Chak
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?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Classical Control Design에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by