Tree depth
D = treedpth(
T
)
treedpth
is a tree-management
utility.
D = treedpth(
returns
the depth T
)D
of the tree T
.
% Create binary tree (tree of order 2) of depth 3. t = ntree(2,3); % Plot tree t. plot(t)
% Tree depth. treedpth(t) ans = 3