how to remove a marker from 1 end of a line
조회 수: 4 (최근 30일)
이전 댓글 표시
hello,
I draw lines using the 'line' function in Matlab 2014B.
For example:
x = 0:1
y=0:1
figure, hold on,
line(x,y,'LineStyle','-','Marker','o')
With the above code, the marker is plotted on both endpoints of the line.
Is there any code I can use to remove the Marker which is at the origin (0,0) endpoint on the line?
thank you.
댓글 수: 0
채택된 답변
Weird Rando
2016년 5월 5일
편집: Weird Rando
2016년 5월 5일
x = 0:1
y=0:1
figure, hold on,
line(x,y,'LineStyle','-')
plot(1,1,'o')
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Change Markers에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!