how can I display number on city locations ?
Show older comments
figure('Name','City Locations','Numbertitle','on');
plot(xy(:,1),xy(:,2),'bo');
........... ........
......... ..........
figure(pfig);
route = best_route([1:n 1]);
plot(xy(route,1),xy(route,2),'b.-');
title(sprintf('Total Distance = %1.4f, Iteration = %d',min_dist,iter));
Answers (1)
the cyclist
on 23 Apr 2013
Edited: the cyclist
on 23 Apr 2013
You could use the text() function.
>> doc text
for details.
1 Comment
Sanuj Shukla
on 23 Apr 2013
Categories
Find more on Traveling Salesman (TSP) in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!