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 Solvers41
Suggested Problems
-
Project Euler: Problem 10, Sum of Primes
2091 Solvers
-
Calculate the area of a triangle between three points
3418 Solvers
-
Create an n-by-n null matrix and fill with ones certain positions
716 Solvers
-
Find last zero for each column
695 Solvers
-
Calculate the average value of the elements in the array
1732 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...