Text in 3D plot

209 次查看(过去 30 天)
Amit Kalhapure
Amit Kalhapure 2013-4-8
Hi, I want to insert text in a 3D plot and for that I'm using following command.
text(x1(i,1),y1(i,1),z1(i,1),num2str(time(i,1)),'HorizontalAlignment','left','FontSize',8);
My problem is, the point in 3D plot is overlapped by the text. I want the point and its respective text should be separated enough to be identified clearly. Can anybody help me?
Amit.

采纳的回答

Jonathan Epperl
Jonathan Epperl 2013-4-9
How about adding a few whitespaces to your string, like so:
text(x1(i,1),y1(i,1),z1(i,1),[' ' ...
num2str(time(i,1))],'HorizontalAlignment','left','FontSize',8);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by