# of data samples per marker on plot
# of data samples per marker on plot
(OP)
I'm doing polar plots of antenna patterns and I want to use data markers to distinguish between different frequencies. However, Matlab seems to use one data marker for each point on the plot which creates a thick line of smudged data markers instead of a line with a data marker every so often. Is there a way to tell Matlab to put a marker at say every 10 points instead of at every one? Thanks for the help.
Joe
Joe





RE: # of data samples per marker on plot
plot(x,y,x(1:10:end),y(1:10:end),'+')