I want to know if there is any way to close the editor window (like function, script)using Matlab command.
Asked
Active
Viewed 933 times
1 Answers
0
Step 1. Get the editor service
editor = com.mathworks.mlservices.MLEditorServices; % main editor service
Step 2. Choose either of following depending on your requirement
editor.getEditorApplication.close; % Close editor windows (with prompt to save)
editor.getEditorApplication.closeNoPrompt; % Close editor windows

Hasala
- 126
- 10