Create a startpoint in form of a ring on my graph

1 回表示 (過去 30 日間)
Cillian
Cillian 2012 年 6 月 26 日
Hi!
I wonder how to create a marker in form of a "ring/circle" on my startpoint a graph?
Thanks Cillian

採用された回答

Thomas
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
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
Cillian
Cillian 2012 年 6 月 27 日
Thanks again, it works great. :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraph and Network Algorithms についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by