Effacer les filtres
Effacer les filtres

count of minimum spanning tree with adjacency matrix of a graph

3 vues (au cours des 30 derniers jours)
Alireza Lashgary
Alireza Lashgary le 9 Août 2016
Commenté : Walter Roberson le 10 Août 2016
Hi friends I have a graph and it's adjacency matrix How can i calculate count of minimum spanning tree with matlab ? Thanks

Réponses (2)

Walter Roberson
Walter Roberson le 9 Août 2016
Modifié(e) : Walter Roberson le 9 Août 2016
  2 commentaires
Alireza Lashgary
Alireza Lashgary le 10 Août 2016
thanks for your reply can you learn me how to use it please? thanks
Walter Roberson
Walter Roberson le 10 Août 2016
[r, c] = find(YourAdjacencyMatrix);
edgelist = [r, c]; %N by 2
g = graph(edgelist);
nt = nsptrees(g);
disp(nt)

Connectez-vous pour commenter.


Steven Lord
Steven Lord le 9 Août 2016
Take a look at the minspantree method of the graph and digraph classes.
  1 commentaire
Walter Roberson
Walter Roberson le 9 Août 2016
That method appears to find one minimum spanning tree, and does not appear to allow one to count the spanning trees.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Graph and Network Algorithms dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by