Wavelet Toolbox |
Syntax
Description
nodesplt
is a tree-management utility.
T = nodesplt(T,N)
returns the modified tree T
corresponding to the decomposition of the node N
.
The nodes are numbered from left to right and from top to bottom. The root index is 0.
Examples
% Create binary tree (tree of order 2) of depth 3. t = ntree(2,3); % Plot tree t. plot(t) % Change Node Label from Depth_Position to Index % (see theplot
function). % Split node of index 10. t = nodesplt(t,10); % Plot new tree t. plot(t) % Change Node Label from Depth_Position to Index % (see theplot
function).
See Also
nodejoin
nodepar | noleaves |
© 1994-2005 The MathWorks, Inc.