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 Solvers48
Suggested Problems
-
Project Euler: Problem 6, Natural numbers, squares and sums.
2553 Solvers
-
Split a string into chunks of specified length
2082 Solvers
-
111 Solvers
-
Make a vector of prime numbers
968 Solvers
-
Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
916 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...