首页 > 编程 > Python > 正文

matplotlib绘图实例演示标记路径

2020-01-04 16:04:13
字体:
来源:转载
供稿:网友

标记路径

演示效果:

标记点,标记大小,标记,matplotlib,python,matplotlib路径

实例代码

import python/266105.html">matplotlib.pyplot as pltimport matplotlib.path as mpathimport numpy as npstar = mpath.Path.unit_regular_star(6)circle = mpath.Path.unit_circle()# concatenate the circle with an internal cutout of the starverts = np.concatenate([circle.vertices, star.vertices[::-1, ...]])codes = np.concatenate([circle.codes, star.codes])cut_star = mpath.Path(verts, codes)plt.plot(np.arange(10)**2, '--r', marker=cut_star, markersize=15)plt.show()

总结

以上就是本文关于matplotlib绘图实例演示标记路径的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表