How do I execute "clear all" without affecting the breakpoints in MATLAB 8.1 (R2013a)?

3 ビュー (過去 30 日間)
When coding interactively, all the breakpoints are cleared when I execute "clear all".
For example, executing the following in MATLAB clears the breakpoints.
clear all
Is there a way to clear everything except the breakpoints?

採用された回答

MathWorks Support Team
MathWorks Support Team 2021 年 2 月 24 日
編集済み: MathWorks Support Team 2021 年 2 月 24 日
MATLAB 8.1 (R2013a) currently does not have the ability to retain breakpoints while clearing all the variables in the workspace after issuing "clear all."
As a workaround, the following example function, clearNoBP, clears all the workspace data without removing the break points.
The functions DBSTATUS and DBSTOP are used to get this functionality.
 
function clearNoBP(varargin)
% returns all breakpoints into 's'
s = dbstatus;
% records all input arguements (varargin) into 'options'
options = '';
for i = 1:numel(varargin)
options = [options,',''',varargin{i},''''];
end
% Execute built-in clear function with input options in specified caller workspace
evalin('caller',['builtin(''clear''',options,')']);
% resets the breakpoints
dbstop(s);
end
The above function records all the current breakpoints, evaluates the built-in CLEAR function only in the caller’s workspace and re-sets all the breakpoints.
In order to use clear allowing the breakpoints to remain, execute the following command in the command window,
clearNoBP all
Also, refer to the following documentation link to see all the available input options with the CLEAR function.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDebugging and Analysis についてさらに検索

タグ

タグが未入力です。

製品


リリース

R2013a

Community Treasure Hunt

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

Start Hunting!

Translated by