embedded matlab function

I'm using embedded matlab function for my project. How to initialize the parameter just once at the beginning? some sort like this: j = 0 (initialize once only) j=j+1 (the value of j is updated after every loop running)

回答 (1 件)

Rick Rosson
Rick Rosson 2011 年 12 月 22 日

1 投票

Please try:
persistent j
if isempty(j)
j = 0;
end
j = j + 1;
HTH.
Rick

カテゴリ

ヘルプ センター および File ExchangeMATLAB Coder についてさらに検索

質問済み:

2011 年 12 月 22 日

Community Treasure Hunt

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

Start Hunting!

Translated by