web-dev-qa-db-ja.com

xy scatterの各エントリのデータラベル

MATLABにx-y散布図があり、各ポイントにデータラベルを付けたいです。ドキュメントでこれを見つけることができないようです。出来ますか?

16
Brian

例:

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

29
Amro