TSP_BRUTE_TEST MATLAB version. Test TSP_BRUTE, which uses brute force on TSP problems. 09-Nov-2018 22:55:48 TSP_BRUTE: MATLAB version Solve small traveling salesman problems by brute force. Distance matrix filename is "five.txt" The city-to-city distance matrix: 0 3 4 2 9 3 0 4 6 3 4 4 0 5 8 2 6 5 0 6 9 3 8 6 0 A minimal length itinerary: Step From To Distance 2 1 4 2 3 4 5 6 4 5 2 3 5 2 3 4 1 3 1 4 ---- -- -- -------------- Total: 19 Number of paths checked = 120 Minimum length = 19 Average length = 25 Maximum length = 31 TSP_BRUTE Normal end of execution. 09-Nov-2018 22:55:48 TSP_BRUTE_TEST Normal end of execution.