필터 지우기
필터 지우기

MATLAB support for additional graph distance metrics/norms?

조회 수: 3 (최근 30일)
David Mittiga
David Mittiga 2020년 8월 22일
댓글: David Mittiga 2020년 8월 26일
I am attempting to compute the "shortest path tree" on a weighted graph but I need to use a different distance metric than usual. Rather than compute the distance along a path as the sum of the edge weights, I want to compute the distance as the maximum weight of the edges. This would be akin to using the infinity-norm instead of the one-norm.
After doing some research, it appears that MATLAB does not support this capability in its graph class. Rather, it only supports distance being calculated by the one-norm. Would you consider this for inclusion in a future MATLAB update? Can you recommend any work-arounds?
Thanks very much for your help!

채택된 답변

Ayush Gupta
Ayush Gupta 2020년 8월 26일
There is no specific function in MATLAB to incorporate various distance metrics while calculating shortest paths between two nodes. However, you can calculate all possible paths between two nodes and can refer this. After that we can iterate through the paths and find the maximum of each path. Lastly, we can compare these maximum and get the desired path.
  댓글 수: 1
David Mittiga
David Mittiga 2020년 8월 26일
Thanks for your reply! I have come up with a more efficient method for calculating the tree desired. I may post it to the file exchange.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Graph and Network Algorithms에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by