Main Content

treeord

Tree order

Syntax

ORD = treeord(T)

Description

treeord is a tree-management utility.

ORD = treeord(T) returns the order ORD of the tree T.

Examples

% Create binary tree (tree of order 2) of depth 3. 
t = ntree(2,3);

% Plot tree t. 
plot(t)

% Tree order. 
treeord(t)

ans =
    2

Version History

Introduced before R2006a

See Also