How to store graphs (undirected) i cell array and retrieve them

3 vues (au cours des 30 derniers jours)
Arek
Arek le 20 Jan 2022
Réponse apportée : Arek le 20 Jan 2022
I am writting an algorithm based on graph. In the process I am creating and modifying undirected graphs. It is mostly performed in the for loop so I thought I can store them in cell array like this:
graphCellArray(i) = {myGraph};
The problem appears when I want to retrieve it from graphCellArray. How can I do it ? Or maybe I should use some other methods?

Réponse acceptée

Yongjian Feng
Yongjian Feng le 20 Jan 2022
You meant:
graphCellArray = {g1, g2, g3};
graphCellArray{1} % access the first one

Plus de réponses (1)

Arek
Arek le 20 Jan 2022
Yesss, thank you :)

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by