Recursive Search for All Possible Paths Between 2 Nodes
    6 ビュー (過去 30 日間)
  
       古いコメントを表示
    
Hi all,
I am trying to look if there is any existing function or codes that can help me to find all possible paths from a starting node to a target node. The only restrictions is that the traveller cannot travel to any previously travelled path or vertex. I imagine this will need a recursive function if the path has some branches to check all possible paths to destination in each intersection.
The ideal input format would be function(coordinates, NodeConnectivityMatrix, startnode, targetnode).
The ideal output format would contain sets of vectors with NodeIndices describing all possible paths.
Please any suggestion. Thank you.
1 件のコメント
  Can Chen
    
 2020 年 6 月 5 日
				Hi czeslaw, I work at MathWorks on graphs. If you have a few minutes, I would very much appreciate hearing more about your workflow using paths. Would you please contact me directly? Thanks. 
回答 (1 件)
  Peter Cook
      
 2018 年 2 月 1 日
        You should check out the graph class. https://www.mathworks.com/help/matlab/ref/graph.html
Most common graph operations are implemented
>> methods graph
Methods for class graph:
addedge           centrality        findnode          maxflow           plot              subgraph          
addnode           conncomp          graph             minspantree       reordernodes      
adjacency         degree            incidence         nearest           rmedge            
bctree            dfsearch          isisomorphic      neighbors         rmnode            
bfsearch          distances         isomorphism       numedges          shortestpath      
biconncomp        findedge          laplacian         numnodes          shortestpathtree
If need more graph methods than that and you have the python networkx library somewhere on your machine, you can create a nx graph like this and use whatever nx methods you want with dot notation:
g = py.networkx.Graph()
0 件のコメント
参考
カテゴリ
				Help Center および File Exchange で Graph and Network Algorithms についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


