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
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