Generate map with custom border

8 ビュー (過去 30 日間)
azra hosic
azra hosic 2020 年 12 月 11 日
Hello everyone,
I am trying to plot Cities on a random generated map (Travelling Salesman Problem) and I was wondering how to add a border in which I want cities to plot?
For example if I upload an image of a country, how to generate borders so the cities are inside that "country" ?
Here is the code for random map initialization:
C = get(handles.number_cities, 'String');
C = str2double(C);
if(isnan(C)), errordlg('Parameters must be numerical.','Mapping Error');
elseif(C <= 0), errordlg('Number of cities must be greater than zero','Mapping Error');
else
M = zeros(C,2); % Map initialization
for id_C = 1:1:C
M(id_C,1) = randi(100); % Random map
M(id_C,2) = randi(100);
end
end

回答 (0 件)

カテゴリ

Help Center および File ExchangeTraveling Salesman (TSP) についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by