Plot, marker, setting appearance
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ionut Anghel
am 7 Jul. 2015
Bearbeitet: bio lim
am 7 Jul. 2015

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 Kommentare
Akzeptierte Antwort
bio lim
am 7 Jul. 2015
Bearbeitet: bio lim
am 7 Jul. 2015
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!