matlab中findpeaks算法解析(MinPeakDistance)

众所周知,matlab是一款特别好用的编程软件。它的好用之处在于提供了很多功能强大的功能函数,调用方便、快捷、高效!但是往往,在真正的实践中,如与其他语言进行切换时,这些优秀的功能函数却成为我们的阻碍。现仅就“findpeaks”这一函数进行简单解析。
最简单的使用findpeaks,即

findpeaksdata);

此时系统给出的是一张形象直观的标记了各个 峰值 的图线。

进一步,如果我们想得到每个峰值的数值及其横坐标,就应使用

[pks,locs] = findpeaks(data,x);

此处需要注意横纵坐标的位置。那么pks 和locs两个数组中就分别存好了我们所需的 峰值数值 及 峰值所在横坐标。
至于这一功能的实现,首先引用matlab说明文档中的原文:

returns a vector with the local maxima (peaks) of the input signal vector, data. A local peak is a data sample that is either larger than its two neighboring samples or is equal to Inf. Non-Inf signal endpoints are excluded. If a peak is flat, the function returns only the point with the lowest

你可能感兴趣的:(学习笔记)