Matchpair function to solve linear assignment problem
8 ビュー (過去 30 日間)
古いコメントを表示
1. I want to know whether Hungarian algorithm is an exact solution algorithm or a heuristic?
2. MATLAB has inbuilt fucntion Matchpair to solve linear assignment problem. What is the difference between Hungarian and Matchpair ( in terms of Time complexity, approach,exact or heuristic)?
2 件のコメント
Steven Lord
2021 年 8 月 16 日
For more information about the algorithm matchpairs implements, see the reference listed in the References section on the documentation page for the matchpairs function.
採用された回答
Walter Roberson
2021 年 8 月 16 日
The Hungarian Algorithm is an exact solution for linear assignment problems.
I do not know anything about the algorithm used by matchpair() but I do notice that it handles the possibility of rows without matches (such as idle workers), which the Hungarian Algorithm by itself does not handle.
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!