define a counter which will starts counting from zero automatically when the count reaches to 10

조회 수: 5 (최근 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.

답변 (2개)

Chunru
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
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.
  댓글 수: 1
Rakesh Singare
Rakesh Singare 2022년 11월 17일
instead here, i have used delay block.it will take feedback from output and gets added in the input again for increamenting its value by +1 again and again until it reaches to value 10. i have used switch block providing condition that if input > 10 , then output =0.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Schedule Model Components에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by