[Simulink] Not to process for a period of time
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello, I have a MATLAB function block takes an input value (one per second) and after some calculations outputs it. How I force this block to stop outputting the signals for a given period of time? Let's say I have a signal:
[1,2,3,4,5,6,7,8,9,10]
And code outputs values larger than 3. I need it to stop outputting for 2 seconds if it indeed finds value larger than 3. So without output stopping, this block will output:
[4,5,6,7,8,9,10]
because these are indeed larger than 3. I need it to output:
[4,7,10]
i.e. it finds value larger than 3, then stops outputting for 2 iterations (2 seconds) and continues.
Thank you!
댓글 수: 0
채택된 답변
Philipp Maier
2014년 6월 12일
I can think of one way that might solve this:
Inside the MATLAB Function Block, you could define a persistent variable. The variable would allow you to retain it's value in memory between calls to the function. In other words, you will be able to use this variable to count the two seconds after your output was larger than 3. For example:
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Sources에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!