MATLAB: After solving and plotting a set of ODEs in 3d, how can I label a specific point (e.g (2,9,5))

labeling a point in a graphode45

[t,y] = ode45(@(t,y) Filename(t,y,d,m,p,w0),tspan,y0);
plot3(y(:,1),y(:,2),y(:,3),'-o');

Best Answer

hold on
scatter3(2,9,5, 'ro', 'lineWidth', 2, 'MarkerFaceColor', 'r')
hold off
Related Question