How to draw a position vector on a 3D plot
이전 댓글 표시
Hi got to draw the 3D plot I needed but now I need to annotate it as shown below

I am finding answers only for 2D plots so can you please help me in drawing the arrow and annotating on it
if you need the txt file I've attached it also the code I used for the plot by the help of this community is
data = readmatrix('jamtp.txt'); x = data(:,1); y = data(:,2); z = data(:,3); f = scatteredInterpolant(x, y, z); xg = linspace(min(x), max(x), 20); yg = linspace(min(y), max(y), 20); [Xg, Yg] = meshgrid(xg, yg); Zg = f(Xg, Yg); surf(Xg, Yg, Zg);
I tried using plotttools to draw the arrow but it comes over the plot and I am not able to write over it
point at which I want the arrow annotation is (0,0,0) (1.57,1.57,125)
Plot is using 1:2:3 from the txt file attached
댓글 수: 1
VBBV
2020년 9월 24일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!