fastest path between more than two nodes
조회 수: 2 (최근 30일)
이전 댓글 표시
I have a table of 217 node and i want to compute the fastestpath between only 20 node which called OD.
i have also a column which define these OD nodes from 1 to 20 and the other nodes are 0.
how can i write this code ; ”0” = no ShortestPath Calc; otherwise OD node?
댓글 수: 2
Christine Tobler
2021년 11월 18일
It looks like you have a set of nodes with X and Y coordinates, but not connectivity information between them (edges connecting pairs of nodes with each other).
What is the shortest path you're trying to compute? Is it the distance between two nodes when connected by a straight line, or some other thing?
답변 (1개)
Christine Tobler
2021년 11월 18일
To compute simply the shortest-path distance, you can use the distances function and pass in a graph object you've constructed using the connectivity information, and the OD vector you constructed above.
If you need the paths, you will need a for-loop:
for i=1:length(OD)
for j = 1:length(OD)
paths{i, j} = shortestpath(G, OD(i), OD(j));
end
end
댓글 수: 2
Christine Tobler
2021년 11월 18일
You need to use a for-loop and call shortestpath with just one node at a time, like in the code I added above.
참고 항목
카테고리
Help Center 및 File Exchange에서 Construction에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!