Scilab-Branch-5.3-GIT
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 Tree
Output parameters
- isEqual
a Boolean, which indicate if those trees are equal or not
Description
Compare two trees 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 Tree)
- uiCreateTree — Creation of a Tree
- uiDisplayTree — Printing a Tree in GUI mode
- uiDumpTree — Printing a Tree in the console (text mode)
- uiInsertNode — Insertion in a Tree
- uiDeleteNode — Deletion in a Tree
- uiConcatTree — Concatenation of Trees
- uiFindNode — Find node in Tree
- uiGetParentNode — Get Parent of a node
- uiGetChildrenNode — Get Children of a node
- uiGetNodePosition — Get the position(s) of a node
<< uiDumpTree | Tree | uiFindNode >> |