Plot, marker, setting appearance
1 回表示 (過去 30 日間)
古いコメントを表示
Hi, there is anyway to set the Marker appearance such that it will not appeat too often. For example I would like that my marker should appear as in case of data2 not as in case of data1.
Thank you
0 件のコメント
採用された回答
bio lim
2015 年 7 月 7 日
編集済み: bio lim
2015 年 7 月 7 日
The number of markers depend on number of data points you have in. However, you can plot a subset of your data1 (Plot the data1 as a line first, then plot the sample points of your data1) to decrease the number of markers.
plot(data1, '-b');
hold on;
plot(data1(1:5:end), '>b')
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!