?? children.m
字號:
function child = children(tree,uid)
% XMLTREE/CHILDREN Return children's UIDs of node uid
% FORMAT child = children(tree,uid)
%
% tree - a tree
% uid - uid of the element
% child - array of the UIDs of children of node uid
%_______________________________________________________________________
%
% Return UID's of children of node uid
%_______________________________________________________________________
% @(#)children.m Guillaume Flandin 02/04/09
error(nargchk(2,2,nargin));
child = [];
uid = uid(:);
l = length(tree);
for i=1:length(uid)
if uid(i) > 0 & uid(i) <= l
if strcmp(tree.tree{uid(i)}.type,'element')
child = [child tree.tree{uid(i)}.contents];
end
else
error('[XMLTree] Invalid UID.');
end
end
if isempty(child), child = []; end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -