필터 지우기
필터 지우기

How can I detect a sign change without detection of 0 holding (Simulink)

조회 수: 13 (최근 30일)
Nick
Nick 2016년 4월 14일
댓글: Nick 2016년 4월 18일
Hi,
I want to detect sign changes with Simulink blocks. By using the common libary, I also detect when the signal jumps from positive to 0, hold 0 and rises back to the positive area, which is not beneficial in my case. Do you know a way how to detect sign changes with real zero passings?
Thanks.

답변 (1개)

Anish Mitra
Anish Mitra 2016년 4월 18일
You can make use of the "Detect" blocks in the Simulink>Logic and Bit Operations library.
>> web(fullfile(docroot, 'simulink/slref/detectfallnegative.html'))
These blocks are for Fixed Step solvers. If the logic needs to be implemented using Variable Step solvers, then you can use a Memory block to construct the logic. Essentially this would mean taking the product of the signal, and the signal delayed by 1 (using a Memory block, not a delay). If the sign of the product is negative, it means that there is a zero crossing at that particular time step.
Hope this helps.
Anish
  댓글 수: 1
Nick
Nick 2016년 4월 18일
Hi Anisha,
thank you for your suggestion. In case there are two zero sample points in a row, this detection won't work.
I solved this problem by saving the last non-zero value and thought there might be a better solution (a block from the libary).
Cheers, Nick.

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

카테고리

Help CenterFile Exchange에서 Array and Matrix Mathematics에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by