Filter löschen
Filter löschen

Execute a command on exit from a workspace

7 Ansichten (letzte 30 Tage)
Leo Simon
Leo Simon am 2 Apr. 2014
Beantwortet: Leo Simon am 22 Feb. 2016
Hi
I'd like to be able to execute a command immediately after I leave a function. In particular, I've written a function called myKeyboard, which does a few things (e.g., reports the results of dbstack), and then keyboards. But I'd like it to keyboard immediately after myKeyboard is completed, rather than within myKeyboard. From the documentation it looks as though the command
onCleanup
should do this, but it doesn't. It seems as though onCleanup only accepts functions as inputs, and executing a function on exit from myKeyboard would not accomplish what I want to accomplish
Thanks very much for any help...
Leo

Akzeptierte Antwort

Leo Simon
Leo Simon am 22 Feb. 2016
Here's an answer, obtained with the help of Matlab technical support
%Keyboards in the CALLER workspace not current workspace
tmpStack = dbstack;
eval(['dbstop in ' strtrim(strtok(tmpStack(end).name,'.')) ' at ' num2str(tmpStack(end).line + 1) ]);

Weitere Antworten (0)

Kategorien

Mehr zu Debugging and Analysis finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by