Why is my findpeaks function not working here?

조회 수: 4 (최근 30일)
Zifeng Qiu
Zifeng Qiu 2020년 10월 21일
답변: Star Strider 2020년 10월 22일
I was trying to find the peaks of my wave output, but for some reason it's not working, I don't know why.
vv = xlsread('1data.xlsx','A7:A100006')'; % voltage output
t = [-0.4:0.00001:0.59999]; % time
plot(t,vv);
findpeaks(vv,t);
it find pretty much all the points on the curve.

답변 (1개)

Star Strider
Star Strider 2020년 10월 22일
You likely have significant noise, and hte noise is being detected as peaks. Use the 'MinPeakProminence' name-value pair to return only the ones you want. (This will take some experimentation, so be patient.)

카테고리

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