如何在matlab中标记具有峰值的图

时间:2015-02-25 06:17:53

标签: matlab label

我试图标记具有峰值的XRD数据,我想从我的数据数组中标记它:

  peak label  
    ab
    ac
    ad
    cb
    bb
    ba

见下图

enter image description here

我还希望这些标签在峰顶部垂直对齐。 我尝试了findpeaks功能,但它无法正常工作。

1 个答案:

答案 0 :(得分:3)

试试这个(但你需要一个信号处理工具箱):

x = [1 2 3 4 5 6 7 8 9] 
y = [1 4 2 7 3 9 5 10 2]
[peak, peakId] = findpeaks(y); %find peaks in your serie
figure(1) 
plot(x, y)
lbalph=('a':'z').'
lb=strcat(Alphabet(1),lbalph(1:length(peak))) %Create a label matrix
lb = num2cell(lb,2) % Convert to cell array
lbid = 1:length(lb)
text(x(peakId), peak, lb(lbid),'Rotation',90) % label the peak with your lb matrix

enter image description here

当您有索引峰值时,您可以根据需要进行标记。