필터 지우기
필터 지우기

Text in 3D plot

조회 수: 195 (최근 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);
  댓글 수: 1
Amit Kalhapure
Amit Kalhapure 2013년 4월 9일
Yes it works. Thanks.

댓글을 달려면 로그인하십시오.

추가 답변 (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