Problem 47623. Create initial basic feasible solution for transportation problems -Minimum Cost Method

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

28.57% Correct | 71.43% Incorrect
Last Solution submitted on Mar 19, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers18

Suggested Problems

More from this Author92

Community Treasure Hunt

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

Start Hunting!