uiEqualsTree
Comparing two trees
Syntax
isEqual = uiEqualsTree(tree1, tree2)
Input parameters
- tree1, tree2
 are of type uitree
Output parameters
- isEqual
 a Boolean, which indicate if those trees are equal or not
Description
Compare two uitree structures.
Examples
// Creation of trees root = uiCreateNode('Root', 'path\rootImage.jpg', 'rootCallback') node1 = uiCreateNode('Node 1', 'default', 'node1Callback') node2 = uiCreateNode('Node 2', 'default', 'node2Callback') myTree1 = uiCreateTree(root, node1, node2) myTree2 = uiCreateTree(root, node1, node2) // Compare myTree1 with myTree2 isEqual = uiEqualsTree(myTree1, myTree2) // will return 'isEqual = T'
See also
- uiCreateNode — Creation of node (for Scilab uitree)
 - uiCreateTree — Creation of an uitree
 - uiDisplayTree — Printing an uitree in GUI mode
 - uiDumpTree — Printing an uitree in the console (text mode)
 - uiInsertNode — Insertion in a uitree
 - uiDeleteNode — Deletion in an uitree
 - uiConcatTree — Concatenation of trees
 - uiFindNode — Find node in an uitree
 - uiGetParentNode — Get Parent of a node
 - uiGetChildrenNode — Get Children of a node
 - uiGetNodePosition — Get the position(s) of a node
 
| Report an issue | ||
| << uiDumpTree | uitree | uiFindNode >> |