making combinations from each leaf to parent node in Matlab
Mostrar comentarios más antiguos
Hello, I have to make all combinations from a tree, starting from parent node and ends at the last leaf nodes. The depth of all leaf nodes is same. I don't understand how can i get such a combination... starting from parent node ending to the leaf node.
Can anyone help please.
5 comentarios
Guillaume
el 19 de Jun. de 2018
Please use Comment on this question instead of starting new answers.
How is your tree stored in matlab?
Sohaib Bin Altaf
el 20 de Jun. de 2018
Editada: Walter Roberson
el 20 de Jun. de 2018
Sohaib Bin Altaf
el 20 de Jun. de 2018
Editada: Sohaib Bin Altaf
el 20 de Jun. de 2018
Guillaume
el 20 de Jun. de 2018
Where does the tree class come form? As far as I know there's no such thing in any matlab toolbox.
Sohaib Bin Altaf
el 21 de Jun. de 2018
Respuestas (1)
Steven Lord
el 21 de Jun. de 2018
0 votos
Consider building your tree as a graph. You could create the adjacency matrix or the edge lists as shown on that page or you could start with an empty graph and use addedge to add edges (either one at a time, or from a parent to each of its children, or in some other grouping.)
As you add edges, you can plot the resulting graph to see how it is growing. The rmedge function may help if you accidentally add the wrong edge.
1 comentario
Sohaib Bin Altaf
el 22 de Jun. de 2018
Categorías
Más información sobre Graph and Network Algorithms en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!