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
Problem Comments
- 
		3 Comments
		Twan Konings
    	on 2 Dec 2020
	
	
  	Nice problem. which I enjoyed solving. well done.
		Christian Schröder
    	on 27 Sep 2022
	
	
  	Cool problem - nice to see something that makes you think and that has practical applications.
		Jacky
    	on 8 Jan 2025
	
	
  	Very difficult for a beginner...
Solution Comments
Show commentsProblem Recent Solvers34
Suggested Problems
- 
         
         18538 Solvers 
- 
         
         1237 Solvers 
- 
         Project Euler: Problem 6, Natural numbers, squares and sums. 2377 Solvers 
- 
         
         5731 Solvers 
- 
         Convert from Fahrenheit to Celsius 26813 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!