フィルターのクリア

clear persistent in function simulink

2 ビュー (過去 30 日間)
Mohammad alshamaa
Mohammad alshamaa 2020 年 5 月 14 日
hallo,
i need to clear persistent in simulink function when ytyt==15 but it say this:
Function 'clear' is not supported for code generation and the coder.extrinsic directive cannot be applied to 'clear'. Rewrite your code so it does not use 'clear'.
so how i can do it ?
function y = fcn(u)
persistent ytyt;
if isempty(ytyt)
ytyt=u
end
ytyt=ytyt+1
if ytyt == 15
clear ytyt
end
y = ytyt
end

回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by