How can I increase the size of data points in a discrete plot
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a figure, created by someone else, to which I need to add one extra set of discrete data points. The added data points, however, are miniscule compared to the ones from the imported .fig file. The code used is:
if true
fig = open('myFig.fig');
hold on
plot(xdata,ydata,'xg');
end
A picture of the resulting plot can be found here (the new data being almost invicible): http://imageshack.us/photo/my-images/534/tempdep.png/
0 Kommentare
Akzeptierte Antwort
Jonathan Sullivan
am 20 Dez. 2012
Try the property MarkerSize.
if true
fig = open('myFig.fig');
hold on
plot(xdata,ydata,'xg','MarkerSize',16);
end
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!