|
BranchName
|
Built-in function
|
|
Returns a string containing the name of an internal node of the tree.
|
Syntax
|
res = TipName(tree_ident, node_index);
|
Notes
|
Valid index range is 0 to BranchCount (tree_ident)-1. The name of the node is of the form 'Node1' rather than 'Tree.Node1'.
|
Examples
|
Tree tr = ((a,b)int1,c,d); tName = BranchName (tr, 0);
Result: "int1".
|
|
Last modified: 5/11/2000 |
|
|