How can I increase the size of data points in a discrete plot?

Illustration
Sophia - 2020-09-11T14:09:03+00:00
Question: How can I increase the size of data points in a discrete plot?

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

Expert Answer

Profile picture of John Michell John Michell answered . 2025-11-20

Try the property MarkerSize.

if true
fig = open('myFig.fig');
hold on
plot(xdata,ydata,'xg','MarkerSize',16);
end


Not satisfied with the answer ?? ASK NOW

Get a Free Consultation or a Sample Assignment Review!