getChildren
标识对象的子级
说明
示例
标识图的子级
此图有两个子级,即状态 A
和默认转移。状态 A
有四个子级,即状态 A1
、状态 A2
和两个转移。
打开模型并访问图的 Stateflow.Chart
对象。
open_system("sfHierarchyAPIExample") ch = find(sfroot,"-isa","Stateflow.Chart");
标识图的子级。显示子级的对象类型。
children = getChildren(ch); classes = arrayfun(@class,children,UniformOutput=false)
classes = 2x1 cell
{'Stateflow.State' }
{'Stateflow.Transition'}
children
中的一个元素是状态。显示该状态的名称。
idx = (classes=="Stateflow.State");
state = children(idx);
state.Name
ans = 'A'
标识状态 A
的子级。显示子级的对象类型。
grandchildren = getChildren(state); classes = arrayfun(@class,grandchildren,UniformOutput=false)
classes = 4x1 cell
{'Stateflow.State' }
{'Stateflow.State' }
{'Stateflow.Transition'}
{'Stateflow.Transition'}
grandchildren
中的两个元素是状态。显示状态的名称。
idx = (classes=="Stateflow.State");
grandchildren(idx).Name
ans = 'A1'
ans = 'A2'
输入参数
parent
— 父对象
Stateflow.Chart
对象 | Stateflow.State
对象 | Stateflow.Box
对象 | Stateflow.Function
对象 | ...
版本历史记录
在 R2006a 之前推出
MATLAB 命令
您点击的链接对应于以下 MATLAB 命令:
请在 MATLAB 命令行窗口中直接输入以执行命令。Web 浏览器不支持 MATLAB 命令。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)