How to clear persistent variables?
289 ビュー (過去 30 日間)
古いコメントを表示
I am currently using a persistent variable within a function that I would like to clear at the end of the execution of a larger program. I am currently using "clear functions". This is causing some headaches during debugging since this clears my breakpoints as well. Is there a way to clear only the persistent variables? Better yet, is there a way to clear specific persistent variables?
0 件のコメント
採用された回答
Yair Altman
2013 年 12 月 5 日
編集済み: Yair Altman
2013 年 12 月 5 日
you can use
clear functionName
and all the persistent vars in that function will be cleared (set to [])
6 件のコメント
Alexander Ryan
2019 年 4 月 27 日
So is there a way to clear persistent variables in local or nested functions?
Gavriel Aminov
2021 年 1 月 6 日
@Alexander Ryan
yes, please see here:
その他の回答 (5 件)
TADA
2019 年 4 月 27 日
編集済み: TADA
2019 年 4 月 27 日
You can clear the name of the .m file in which that function is declared
it works for .m file functions, local functions, nested functions, class methods
it also works if you kept a function handle to that function
5 件のコメント
Walter Roberson
2021 年 5 月 4 日
clear NAME
where NAME is the name of a file that contains the function with the persistent variable you want to clear, without file extension. For example
clear project17
for file project17.m
There is no way to clear selectively within a file.
will wehner
2014 年 1 月 8 日
%Example Function
function testCleanup
disp(' ')
k = 3;
myFun;
for i=1:2\n
myFun
end
function myFun
persistent x
if(isempty(x))
x=1;
disp('empty')
else
disp('not empty')
end
end
end %end testCleanup
The function myFun is called 3 times. Once, then 2 more times in a loop. When running this function for the first time it will display
empty
not empty
not empty
on each subsequent run of testCleanup, it displays
not empty
not empty
not empty
It is my desire to clear the persistent variable x at the end of the function testCleanup. Simply clearing the function does not work. Using the whos command outside the function scope does not work. Is there any way to use onCleanup to clear the persistent variable x?
1 件のコメント
Image Analyst
2014 年 1 月 8 日
Try this:
function testCleanup
clc;
k = 3;
myFun;
for i=1:2
myFun
end
clear functions;
function myFun
persistent x
if(isempty(x))
x=1;
disp('empty')
else
disp('not empty')
end
end
end %end testCleanup
morteza
2015 年 1 月 23 日
you can use each of these instructions: clear all or clear classes or clear functions
0 件のコメント
Viktor Svensson
2016 年 6 月 27 日
Ran into this problem today, wanted to clear persistent variables and not the debug points. The best I could come up with was
debugStatus = dbstatus(fileName);
clear(fileName);
dbstop(debugStatus)
where dbstatus reads the debug points in the file and dbstop returns them after the clear.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Scope Variables and Generate Names についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!