필터 지우기
필터 지우기

Plotting Square wave from pressure signal

조회 수: 1 (최근 30일)
Tehreem Syed
Tehreem Syed 2020년 8월 17일
댓글: Tehreem Syed 2020년 8월 17일
Hi,
I have pressure signal collected from the sensors placed under foot. Findpeaks function was used to detect points (c and d). Point ( and b) are the zero crossing. I want to plot sqaure wave from this signal for the following interval:
If pressure signal is greater than point (a) and equal to or less than point d
new_signal = 1;
else if pressure signal is greater than point (b) and equal to or less than point f
new_signal = 0;
How i can plot this in matlab?

답변 (1개)

Antonio Ciociola
Antonio Ciociola 2020년 8월 17일
편집: Antonio Ciociola 2020년 8월 17일
This can be done transforming your signal into an arry of logic values:
sig_bool = (signal>a & signal<=d);
  댓글 수: 1
Tehreem Syed
Tehreem Syed 2020년 8월 17일
Thanks for your answer. We also have point c. I am detecting peaks using findpeaks function. I am getting both point c and d. I am not getting the required result using this logic.

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

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by