Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
无论如何,我是否可以检测到具有特定强度的峰或谷。
我的意思是A当且仅当它的值高于前一个N元素并且高于下一个M元素时,如果是一个向量而不是一个值是峰值。
A
N
M
显然这可以通过循环来完成,但是有什么简单的方法可以通过向量操作来做到这一点。
我觉得
[...] = findpeaks(data,'Name',value)
可以帮助你。