f = nodepar(t,n)
returns a vector that contains the indices of the "parent(s)" of the nodes
n in the tree t. In the tree, nodes
are numbered from left to right and from top to bottom. The root index is 0.
Note
nodepar(t,0) or nodepar(t,[0 0])
returns -1.
f = nodepar(t,n,"deppos")
returns a matrix that contains the depths and positions of the "parent(s)" of the
nodes n in the tree t.
Note
nodepar(t,0,"deppos") or
nodepar(t,[0,0],"deppos") returns
[-1,0].
Tree, specified as an ntree, dtree,
or wptree object.
Tree nodes, specified as a column vector that contains indices of the
nodes or a matrix that contains the depths and positions of the nodes. If
specified as a matrix, n(i,1) and
n(i,2) are the depth and
position, respectively, of the ith node.
Tree nodes, returned as a column vector or matrix. If
f is a vector, f contains node indices. If
f is matrix,
f(i,1) and
f(i,2) are the depth and
position, respectively, of the ith node.