MATLAB: Delete a specific shape of marker from a plot

deleteguide

Hello, I am plotting data using dots and then superimpose a marker of type '+' at certain locations. Is it possible to delete just the '+' markers from the GUIDE axes.
I have tried
delete( findobj(gca, 'type', 'line') );
But this deletes all the markers (including '.')
Thanks
Jason

Best Answer

delete(findobj(gca, 'Marker', '+'))