Create a startpoint in form of a ring on my graph
1 次查看(过去 30 天)
显示 更早的评论
Hi!
I wonder how to create a marker in form of a "ring/circle" on my startpoint a graph?
Thanks Cillian
0 个评论
采纳的回答
Thomas
2012-6-26
try
a=[1 2 3 4]; %data to be plotted
plot(a)
hold on
plot(a(1),'o','MarkerSize',10) % start point with circle
6 个评论
Thomas
2012-6-27
try the following
plot3(YOUT(:,1),YOUT(:,2),YOUT(:,3),'b') % your actual plot
hold on
plot3(YOUT(1,1),YOUT(1,2),YOUT(1,3),'o','MarkerSize',10) % start point
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graph and Network Algorithms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!