Clear Filters
Clear Filters

Reduce number of Markers on existing Matlab Figure

131 views (last 30 days)
I have an existing set of figures that I cannot quickly and easily regenerate the plots for since they are created by different set of functions. There are a set of a thousand points that each show a marker, it is too dense as is, is there a way to reduce the number of markers on a plot without having to regenerate it.

Accepted Answer

Garrett
Garrett on 27 Oct 2019
I figured it out.
Open the figure, go to Edit->Figure Properties
Click on the plot line you wish to edit the marker spacing.
Then go down to the 'Marker' option on the Property Inspector.
In the MarkerIndices box, it may say something to the effect of "1x1001 unit64"
You can create a vector here to modify the spacing.
In my case I wanted to have a marker every 50 points, so I entered [1:50:1000] into the MarkerIndices box, which solved my issue.
  4 Comments
VIVEK CHAUDHARY
VIVEK CHAUDHARY on 4 Aug 2020
@Garrett I tried using MArkerIndiceis but each time I try to input a vector, the MarkerIndicies property resets to 1x1001 unit64.
Mubashir Hussain Wani
Mubashir Hussain Wani on 22 Sep 2020
@Vivek - In MATLAB 2018 onwards omit the use of brackets '[]' - just provide the indices e.g. 1:10:100.

Sign in to comment.

More Answers (1)

Steven Lord
Steven Lord on 27 Oct 2019
If you created your plots using the plot function, set the MarkerIndices property of the lines created by plot. See the "Revert to Default Marker Locations" example on this documentation page to see how to set this property on a line that already exists.

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!