Clear persisent variable in for loop

1 回表示 (過去 30 日間)
Deepa Maheshvare
Deepa Maheshvare 2020 年 3 月 5 日
コメント済み: Rik 2020 年 3 月 5 日
I've the following code
function fun(i)
persistent ss
persistent s
s = vercat(s,rand(1,2))
if i== 4
ss(j) = s ;
% here I want to clear the persistent variable s
end
end
The above function is executed in the following manner
for j = 1:4
for i = 1:4
i
fun(i)
end
end
I would like to ask for suggestions on how to clear the persistent variable s when i = 4.
  1 件のコメント
Rik
Rik 2020 年 3 月 5 日
Why do you want to do this?

サインインしてコメントする。

回答 (1 件)

Robert U
Robert U 2020 年 3 月 5 日
Hello Deepa Maheshvare,
According to documentation persistent variables can be cleared by clearing the function from memory. If you want to reset the value of the variable within the function just assign a new value (which could be [] as well).
Kind regards,
Robert

カテゴリ

Help Center および File ExchangeWhos についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by