How to store graphs (undirected) i cell array and retrieve them
7 次查看(过去 30 天)
显示 更早的评论
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?
0 个评论
采纳的回答
Yongjian Feng
2022-1-20
You meant:
graphCellArray = {g1, g2, g3};
graphCellArray{1} % access the first one
0 个评论
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Undirected Graphs 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!