what does pred means in the command (dist ,path, pred)=graphshortestpath(G,S)?
조회 수: 1 (최근 30일)
이전 댓글 표시
[dist,path,pred]= graphshortestpath(DG,1,2)
dist =
1.3600
path =
1 5 4 6 2
pred =
0 6 5 5 1 4
댓글 수: 0
답변 (1개)
Ingrid
2015년 12월 2일
just write the following command in your matlab:
doc graphshortestpath
This will tell you that:
... pred contains the predecessor nodes of the winning paths.
참고 항목
카테고리
Help Center 및 File Exchange에서 Neuroimaging에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!