Detect peaks before drop in signal
4 次查看(过去 30 天)
显示 更早的评论
Hi everyone,
I have this signal where i need to detect only the peak right before the signal drops but I can't figure out a way to do it. Can anyone give me a hand?
Thank you so much!
0 个评论
采纳的回答
Star Strider
2024-5-14
Withoiut having the data to work with, one option could be the islocalmax function. Use 'FlatSelection','last' since the tops of those pulses could be considered ‘flat’. You will have to experiment.
0 个评论
更多回答(1 个)
Zain Ahmed
2024-5-14
One way you can do is finding the derivative of the signal.
For example: if the current derivative is 0 and both previous and next points are negative, then you found a peak before making a drop.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!