pulsewidth not working with higher sampling rates?

조회 수: 6 (최근 30일)
Eric Kuebler
Eric Kuebler 2019년 11월 6일
댓글: Daniel M 2019년 11월 6일
I have a waveform like this:
And I would like to know the width of this spike at half height, a nice function to do so is pulsewidth (thank you Daniel M!!). Since the waveform is originally sampled at 200 kHz, I tried running pulsewidth using this code:
figure
pulsewidth(x,2e5);
This is the output:
There is no pulse width identified.
Now I resample the waveform at 50 kHz and run pulsewidth again using the following code:
x = resample(x,5e4,2e5);
figure
pulsewidth(x,5e4);
And here is my pulsewidth clearly identified:
Anyone know why this would not work at 200 kHz; but work at 50 kHz?
BTW I've also tried using a time-stamped vector for input instead Fs; but get the same exact output. Also tried adding the statelevels for max and min values on this trace.
Thank you in advance!!
Eric
  댓글 수: 3
Eric Kuebler
Eric Kuebler 2019년 11월 6일
I actually didn't notice that the function identified the post-peak portion as the lower state with the 200kHz waveform.
Perhaps the edge effects in the 50 kHz waveform has something to do with the function picking the pre-peak portion as lower state?
Sorry about posting two questions, I suppose I could have posted in the other question; but wasn't sure the answer would be overlapping.
Thank you!
Daniel M
Daniel M 2019년 11월 6일
Yes, probably because of the edge effects. Try to deal with those. My proposed solution also seems like it would be robust to the edge effects, but I can't test that.

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Matched Filter and Ambiguity Function에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by