使用 matlab 在图中显示彩色标签
我使用以下命令在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
返回标签句柄向量,然后您可以为所有或单个标签设置颜色(以及其他文本属性)。
Return vector of label handles, then you can set color (as well as other text properties) for all or individual labels.