mathematica获取OpenMarkers默认序列

获取Marker符号

PlotMarkers
画多组数据时,mathematica可以自动给每组数据不一样的marker记号

ListPlot[{{1, 2, 3, 5, 8}, {2, 3, 6, 9, 10}, {4, 5, 7, 10, 12}}, 
 PlotMarkers -> "OpenMarkers"]

mathematica获取OpenMarkers默认序列_第1张图片
但是这个序列并不能像ColorData那样简单的获取到
mathematica获取OpenMarkers默认序列_第2张图片

要自己用参数绘制每个图形,又有些困难
得到这几个符号的方法

{circle, uptriangle, diamond, square, downtriangle} = 
 Charting`CommonDump`GraphicsOpenPlotMarkers[][[;; 5]]

mathematica获取OpenMarkers默认序列_第3张图片
参考来源
PlotMarkers - are there default common shapes available?

你可能感兴趣的:(Methematica,科技)