Reduce number of Markers on existing Matlab Figure

132 次查看(过去 30 天)
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.

采纳的回答

Garrett
Garrett 2019-10-27
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 个评论
VIVEK CHAUDHARY
VIVEK CHAUDHARY 2020-8-4
@Garrett I tried using MArkerIndiceis but each time I try to input a vector, the MarkerIndicies property resets to 1x1001 unit64.
Mubashir Hussain Wani
@Vivek - In MATLAB 2018 onwards omit the use of brackets '[]' - just provide the indices e.g. 1:10:100.

请先登录,再进行评论。

更多回答(1 个)

Steven Lord
Steven Lord 2019-10-27
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.

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by