Scilab 5.5.2
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
uiEqualsTree
Comparing two trees
Calling Sequence
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 >> |