How to draw a position vector on a 3D plot
Mostrar comentarios más antiguos
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 comentario
VBBV
el 24 de Sept. de 2020
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Surface and Mesh Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!