gpt4 book ai didi

matlab - xy 散点图中每个条目的数据标签

转载 作者:太空宇宙 更新时间:2023-11-03 19:09:07 29 4
gpt4 key购买 nike

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

最佳答案

例子:

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 - xy 散点图中每个条目的数据标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7100398/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com