define a counter which will starts counting from zero automatically when the count reaches to 10
8 ビュー (過去 30 日間)
古いコメントを表示
Hello all , can you please explain how to model a simple counter which will continue to count from the start when it reaches its max value to 10.
0 件のコメント
回答 (2 件)
Chunru
2022 年 11 月 16 日
c = 0; % initialization
while true
c = mod( c + 1, 10); % count from 0 to 9 then re-start
end
Andy Bartlett
2022 年 11 月 16 日
In a Simulink model, click on the canvas and type "counter"
you'll see a list of blocks
one of these is called Counter Limited
it does exactly what you are asking for.
参考
カテゴリ
Help Center および File Exchange で General Applications についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!