Python Matplotlib相当于get(gca,' Children')matlab语句

时间:2017-04-27 09:41:24

标签: python matlab matplotlib

你好我需要这个matlab语句的等效指令:

h=get(gca,'Children');

用于matplotlib

提前感谢您的支持。

1 个答案:

答案 0 :(得分:2)

要从当前轴获取所有对象,可以使用get_children

h = plt.gca().get_children()