Cycle basis for large graph

6 vues (au cours des 30 derniers jours)
Tala Dannawi
Tala Dannawi le 5 Juin 2023
Commenté : Tala Dannawi le 16 Juin 2023
I have a graph of around 3 million nodes and 10 million edges.
I want to get the cycle basis of the graph but it runs out of memory when using the command cyclebasis(G).
Is there a way to solve it?
  3 commentaires
Tala Dannawi
Tala Dannawi le 6 Juin 2023
Thank you Christine, as you have suggested I tried modifying cyclebasis but got an error (unable to save file, access denied)..
Christine Tobler
Christine Tobler le 7 Juin 2023
You can't modify a file that is part of MATLAB. You could make a copy and modify that.

Connectez-vous pour commenter.

Réponses (1)

Muskan
Muskan le 15 Juin 2023
Hi Tala,
As per my understanding of the question, when dealing with large graphs such as the one you described, calculating the cycle basis using the cyclebasis(G) command in MATLAB may not be feasible due to memory constraints.
One way to solve this problem is to use a smaller representation of the graph. For example, you could use a sparse matrix representation, which would use less memory than a dense matrix representation
Finally, you could try to reduce the size of the graph by removing some of the edges. This could be done by using a graph simplification algorithm, such as the Kruskal algorithm or the Prim algorithm.
I hope the above information helps resolve your query.
Thanks
  1 commentaire
Tala Dannawi
Tala Dannawi le 16 Juin 2023
Thank you Muskan :)

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