Is it possible to show point id in figure
4 次查看(过去 30 天)
显示 更早的评论
When we imported the data in Matlab as matrix with (point id, x,y) data is include coordinates. How to show point id's in figure? is that possible? thanks
3 个评论
Mahdi
2013-4-2
Glad I was of help :) Please "accept" the answer so that other contributors don't look at the post.
采纳的回答
Mahdi
2013-4-2
hold on
% Get the values from the matrix
point_id=Matrix1(:,1);
x=Matrix1(:,2);
y=Matrix1(:,3);
% Set the text to show up
for i=1:length(x)
text(x(i),y(i), point_id)
end
Note that you can also do this without redefining the values again. I just did it for clarity.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!