[MCM] PSO粒子羣算法解決TSP問題

%% 該文件演示基於TSP-PSO算法 clc;clear %% 模擬隨機產生數據 x=1:1:100;x=x(:); y = randi([10,100],100,1); data=[ones(100,1), x ,y]; cityCoor=[data(:,2) data(:,3)];%城市座標矩陣,第一維是編號 figure plot(cityCoor(:,1),cityCoor(:,2
相關文章
相關標籤/搜索