Close Control System Toolbox main window
4 views (last 30 days)
Show older comments
Davide Baitelli
on 13 Sep 2016
Edited: Davide Baitelli
on 19 Sep 2016
Hello guys, i'm using Control System Toolbox, so i open it with
handle = sisotool();
now i want to close these two windows just opened:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/156317/image.png)
but with
close(handle);
only the second form is closed, so my answer is how to close "Control and Estimation Tools Manager"? I tried to get handle's parent but didn't work, it seems to not have a parent
3 Comments
Walter Roberson
on 14 Sep 2016
If you examine the UserData field of the handle returned, you will find a sisogui.sisotool stored there which is the tools manager. Unfortunately I have not been able to figure out how to close it by program. I dug into the creation code for it, but it is old-style MATLAB objects and I do not understand some of the object creation mechanisms for that.
Accepted Answer
Farouk Moukaddem
on 19 Sep 2016
Hi Davide,
The "close" function in MATLAB is used to remove a specified "figure".
The "Control and Estimation Tools Manager" is not considered a "figure", and therefore cannot be closed using this command.
There is no documented way to close this window programmatically in R2013b. You need to close it manually.
Refer to the following documentation link for more information about the "close" function: https://www.mathworks.com/help/matlab/ref/close.html
Thanks,
Farouk
More Answers (0)
See Also
Categories
Find more on Classical Control Design in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!