Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/matlab/15.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
与get(gca,';Children';)matlab语句等价的Python Matplotlib_Python_Matlab_Matplotlib - Fatal编程技术网

与get(gca,';Children';)matlab语句等价的Python Matplotlib

与get(gca,';Children';)matlab语句等价的Python Matplotlib,python,matlab,matplotlib,Python,Matlab,Matplotlib,您好,我需要此matlab语句的等效指令: h=get(gca,'Children'); 对于matplotlib 提前感谢您的支持。要从当前轴获取所有对象,您可以使用 这个命令在matlab中做什么?它返回图形当前Axis中的所有对象在我得到h之后,我必须在python中执行以下matlab语句:(strcmp(get(h(jh),'Type'),'quiver')。我找不到属性类型 h = plt.gca().get_children()

您好,我需要此matlab语句的等效指令:

h=get(gca,'Children');
对于matplotlib


提前感谢您的支持。

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


这个命令在matlab中做什么?它返回图形当前Axis中的所有对象在我得到h之后,我必须在python中执行以下matlab语句:
(strcmp(get(h(jh),'Type'),'quiver')
。我找不到属性类型
h = plt.gca().get_children()