이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
ALLSPATH - solve the All Pairs Shortest Path problem
Rapidly returns the shortest node-to-node distance along the edges of a graph, for all nodes in the graph.
USAGE: B = allspath(A)
A = input distance matrix between nodes
B = shortest path distance matrix between all nodes
Notes:
(1) For a graph with n nodes, A is an n-by-n distance matrix giving the distances between adjacent nodes. Since the distance from point i to point j is the same as the distance from point j to point i, A must be a symmetric matrix
(2) The distance from a node to itself can either be entered as zero or infinity. (Either will produce a correct result.) This means that the diagonal elements of the matrix A must all be either zero or infinity.
(3) The distance between nodes that are not adjacent to each other must be entered as either zero or infinity. (Either will produce a correct result.) This means that the (i,j) and (j,i) elements of A, where i and j are non-adjacent nodes, must all be either zero or infinity.
(4) If the input graph is not "connected," meaning that some nodes cannot be reached from other nodes no matter how many edges are traversed, then the distances between nodes that cannot be connected will be returned as infinite.
(5) Distances between a node and itself are returned as zero.
(6) This function codifies an original algorithm created by the author.
(7) No warranties; use at your own risk.
(8) Written by Michael Kleder, October 2005.
인용 양식
Michael Kleder (2026). "All Pairs Shortest Path" Graph Solver (https://kr.mathworks.com/matlabcentral/fileexchange/8808-all-pairs-shortest-path-graph-solver), MATLAB Central File Exchange. 검색 날짜: .
| 버전 | 퍼블리시됨 | 릴리스 정보 | Action |
|---|---|---|---|
| 1.0.0.0 | Fixed a bug in the example. (An index variable had been omitted. Thanks to Joseph Kirk for pointing out the bug.) |
