Scilab-Branch-6.1-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
uiDumpTree
Printing an uitree in the console (text mode)
Syntax
uiDumpTree(tree[,b])
Input parameters
- tree
an uitree
- b(optional)
display features of each node of the tree. By default b is '%F'.
Description
Display a tree into the console(text mode).
Examples
// We must create leaves, nodes, branches, and the tree node1 = uiCreateNode('Node 1'); leaf11 = uiCreateNode('leaf 1.1'); leaf12 = uiCreateNode('leaf 1.2'); treeNode1 = uiCreateTree(node1, leaf11, leaf12); node2 = uiCreateNode('Node 2'); node3 = uiCreateNode('Node 3'); leaf31 = uiCreateNode('leaf 3.1'); leaf32 = uiCreateNode('leaf 3.2'); treeNode3 = uiCreateTree(node3, leaf31, leaf32); root = uiCreateNode('Root'); treeRoot = uiCreateTree(root, treeNode1, node2, treeNode3); // Display in the console: uiDumpTree(treeRoot)
--> uiDumpTree(treeRoot) |_./ Root | |_./ Node 1 | | |_./ leaf 1.1 | | |_./ leaf 1.2 | |_./ Node 2 | |_./ Node 3 | | |_./ leaf 3.1 | | |_./ leaf 3.2
See also
- uiDisplayTree — Printing an uitree in GUI mode
- tree_show — Displays a tree view of a list, tlist, mlist, cell or structure array, Xcos block
- xmlDump — Dump a XML object
- prettyprint — Converts a Scilab object into some corresponding LaTeX, TeX, MathML or HTML strings
- editvar — Scilab variable editor
Report an issue | ||
<< uiDisplayTree | uitree | uiEqualsTree >> |