uiEqualsTree - Comparing two trees (original) (raw)
Scilab 5.3.3
- Scilab help
- GUI
- Tree
- uiConcatTree
- uiCreateNode
- uiCreateTree
- uiDeleteNode
- uiDisplayTree
- uiDumpTree
- uiEqualsTree
- uiFindNode
- uiGetChildrenNode
- uiGetNodePosition
- uiGetParentNode
- uiInsertNode
Please note that the recommended version of Scilab is 2026.0.1. This page might be outdated.
See the recommended documentation of this function
Scilab help >> GUI > Tree > uiEqualsTree
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
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)
isEqual = uiEqualsTree(myTree1, myTree2)
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