ControlSystemDesigner displays empty graphs
Mostrar comentarios más antiguos
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)

Respuestas (1)
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 comentarios
Fernando Lopez
el 21 de Mzo. de 2023
Sam Chak
el 21 de Mzo. de 2023
Hi @Fernando Lopez, the Control System Designer App can be opened on MATLAB Online. Have you tried whether it works after restarting your computer?
Categorías
Más información sobre Programming en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
