2011-08-17 50 views
15

我在MATLAB中有一個x-y散點圖,並且希望在每個點上放置一個數據標籤。我似乎無法在文檔中找到它。可能嗎?xy scatter中每個條目上的數據標籤

+0

可能重複(http://stackoverflow.com/questions/4140312/labeling-points-in-在matlab中的順序圖),[如何在Matlab中標記兩個向量?](http://stackoverflow.com/questions/2243069/how-do-i-label-two-vectors-in -matlab) – Amro

回答

28

實施例:

p = rand(10,2); 
scatter(p(:,1), p(:,2), 'filled') 
axis([0 1 0 1]) 

labels = num2str((1:size(p,1))','%d'); %' 
text(p(:,1), p(:,2), labels, 'horizontal','left', 'vertical','bottom') 

enter image description here

[以便標記點在MATLAB的曲線]的