Previous Problem : Problem 47618
Consider following transportation problem:
You should return the assignment matrix where the total cost is minimum. In this case assignment matrix should be:
assignmentMatrix = [
0 0 0 40
10 10 30 0
0 10 0 0];
And total cost should be 410.
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers52
Suggested Problems
-
Change the sign of even index entries of the reversed vector
660 Solvers
-
Count consecutive 0's in between values of 1
538 Solvers
-
1780 Solvers
-
1656 Solvers
-
Create initial basic feasible solution for transportation problems - North-West Corner Method
83 Solvers
More from this Author92
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Nice problem. which I enjoyed solving. well done.
Cool problem - nice to see something that makes you think and that has practical applications.
Very difficult for a beginner...