📄 ascendants.m
字号:
function tab = ascendants(nodes,order,level,flagdp)
%ASCTABLE Construction of ascendants table.
% M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 21-May-2003.
% Last Revision: 22-May-2003.
% Copyright 1995-2004 The MathWorks, Inc.
% $Revision: 1.1.6.2 $
% Construction of ascendants table.
%----------------------------------
tab = zeros(length(nodes),level+1);
tab(:,1) = sort(nodes);
for j = 1:level
tab(:,j+1) = floor((tab(:,j)-1)/order);
end
%----------------------------------------%
% Now we may elimate duplicate indices
% And invalid indices (ind<0)
%----------------------------------------%
idx = [ones(1,level+1) ; diff(tab,1,1)];
tab = tab(idx>0);
tab = wunique(tab(:));
tab = tab(tab>=0);
if nargin==4 && flagdp
[tab(:,1),tab(:,2)] = ind2depo(order,tab);
end
%-------------------------------------------------------------%
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -