3D point label a in plot
조회 수: 16 (최근 30일)
이전 댓글 표시
how can I label a point in a 3D plot at x,y,z coordinates?
댓글 수: 0
채택된 답변
Benjamin Kraus
2017년 11월 9일
For example:
[X,Y] = meshgrid(-pi:pi/16:pi);
Z = cos(X).*sin(Y);
surf(X,Y,Z)
text(X(26,17),Y(26,17),Z(26,17)+0.1,'Peak')
추가 답변 (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!