Documentation

nodejoin

Recompose node

Syntax

T = nodejoin(T,N)
T = nodejoin(T)
T = nodejoin(T,0)

Description

nodejoinis a tree-management utility.

T = nodejoin(T,N)returns the modified treeTcorresponding to a recomposition of the nodeN.

节点从lef编号t to right and from top to bottom. The root index is 0.

T = nodejoin(T)is equivalent toT = nodejoin(T,0).

Examples

% Create binary tree of depth 3. t = ntree(2,3); % Plot tree t. plot(t) % Change Node Label from Depth_Position to Index % (see theplotfunction).

% Merge nodes of indices 4 and 5. t = nodejoin(t,5); t = nodejoin(t,4); % Plot new tree t. plot(t) % Change Node Label from Depth_Position to Index % (see theplotfunction).

See Also

Introduced before R2006a

Was this topic helpful?