使用 matlab 在图中显示彩色标签

发布于 2024-11-10 16:22:27 字数 160 浏览 1 评论 0原文

我使用以下命令在 matlab 中的二维地图上绘制一组点

labels = {'label1', 'label2', 'label3',...) 情节(分数(:,1),分数(:,2),'*') gname(lables)

有没有办法为每个标签选择颜色?

谢谢

I'm using the following commands to plot a set of points on a 2d map in matlab

labels = {'label1', ' label2', 'label3',...)
plot(score(:,1),score(:,2), '*')
gname(lables)

Is there a way to choose the color for each label?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哀由 2024-11-17 16:22:27

返回标签句柄向量,然后您可以为所有或单个标签设置颜色(以及其他文本属性)。

h = gname(lables);
set(h,'color','r') %# set all labels to red
set(h(2),'color','g') %# set 2nd label to green

Return vector of label handles, then you can set color (as well as other text properties) for all or individual labels.

h = gname(lables);
set(h,'color','r') %# set all labels to red
set(h(2),'color','g') %# set 2nd label to green
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文