xy散射中每个条目的数据标签

时间:2011-08-17 22:41:19

标签: matlab

我在MATLAB中有一个x-y散点图,想在每个点上放一个数据标签。我似乎无法在文档中找到它。有可能吗?

1 个答案:

答案 0 :(得分:29)

示例:

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