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!