필터 지우기
필터 지우기

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 CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by