I have a plot that has a lot of points. Putting markers on all the points makes the plot too cluttered; instead of a line made of markers I just get a thick line. How can I plot only every other marker, or every third marker, or something like that?
There is no command to plot only every other marker, or every third marker, or every nth marker. However, you can accomplish this by using the following command, assuming you have your X-data stored in XVec and your Y-data stored in YVec:
plot(XVec(1:2:end),YVec(1:2:end), '+')
This command will plot every other point in your data using the + marker. Change the 2 in the statement to a 3 to plot every third point:
plot(XVec(1:3:end),YVec(1:3:end), '+')
or to a 4 to plot every fourth, etc:
plot(XVec(1:4:end),YVec(1:4:end), '+')
To plot a line with every fourth marker present, you can use the following code:
plot(XVec,YVec) hold on plot(XVec(1:4:end),YVec(1:4:end), '+') hold off
Matlabsolutions.com provides guaranteed satisfaction with a
commitment to complete the work within time. Combined with our meticulous work ethics and extensive domain
experience, We are the ideal partner for all your homework/assignment needs. We pledge to provide 24*7 support
to dissolve all your academic doubts. We are composed of 300+ esteemed Matlab and other experts who have been
empanelled after extensive research and quality check.
Matlabsolutions.com provides undivided attention to each Matlab
assignment order with a methodical approach to solution. Our network span is not restricted to US, UK and Australia rather extends to countries like Singapore, Canada and UAE. Our Matlab assignment help services
include Image Processing Assignments, Electrical Engineering Assignments, Matlab homework help, Matlab Research Paper help, Matlab Simulink help. Get your work
done at the best price in industry.