91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

matlab三維路徑規劃的方法是什么

發布時間:2022-01-14 10:17:34 來源:億速云 閱讀:490 作者:iii 欄目:大數據

今天小編給大家分享一下matlab三維路徑規劃的方法是什么的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

%% 清空環境      
   
clc
clear
matlab三維路徑規劃的方法是什么  
%% 數據初始化      
   
%下載數據      
   
load  HeightData HeightData

   
%網格劃分
LevelGrid=10;
PortGrid=21;

   
%起點終點網格點 
starty=10;starth=4;
endy=8;endh=5;
m=1;
%算法參數
PopNumber=10;         %種群個數
BestFitness=[];    %最佳個體

   
%初始信息素
pheromone=ones(21,21,21);

   
%% 初始搜索路徑
[path,pheromone]=searchpath(PopNumber,LevelGrid,PortGrid,pheromone, ...
    HeightData,starty,starth,endy,endh); 
fitness=CacuFit(path);                          %適應度計算
[bestfitness,bestindex]=min(fitness);           %最佳適應度
bestpath=path(bestindex,:);                     %最佳路徑
BestFitness=[BestFitness;bestfitness];          %適應度值記錄
 
%% 信息素更新
rou=0.2;
cfit=100/bestfitness;
for i=2:PortGrid-1
    pheromone(i,bestpath(i*2-1),bestpath(i*2))= ...
        (1-rou)*pheromone(i,bestpath(i*2-1),bestpath(i*2))+rou*cfit;
end
    
%% 循環尋找最優路徑
for kk=1:100
     
    %% 路徑搜索
    [path,pheromone]=searchpath(PopNumber,LevelGrid,PortGrid,...
        pheromone,HeightData,starty,starth,endy,endh); 
    
    %% 適應度值計算更新
    fitness=CacuFit(path);                               
    [newbestfitness,newbestindex]=min(fitness);     
    if newbestfitness<bestfitness
        bestfitness=newbestfitness;
        bestpath=path(newbestindex,:);
    end 
    BestFitness=[BestFitness;bestfitness];
    
    %% 更新信息素
    cfit=100/bestfitness;
    for i=2:PortGrid-1
        pheromone(i,bestpath(i*2-1),bestpath(i*2))=(1-rou)* ...
            pheromone(i,bestpath(i*2-1),bestpath(i*2))+rou*cfit;
    end
 
end

   
%% 最佳路徑
for i=1:21
    a(i,1)=bestpath(i*2-1);
    a(i,2)=bestpath(i*2);
end
figure(1)
x=1:21;
y=1:21;
[x1,y1]=meshgrid(x,y);
mesh(x1,y1,HeightData)
axis([1,21,1,21,0,2000])
hold on
k=1:21;
plot3(k(1)',a(1,1)',a(1,2)'*200,'--o','LineWidth',2,...
                       'MarkerEdgeColor','k',...
                       'MarkerFaceColor','g',...
                       'MarkerSize',10)
plot3(k(21)',a(21,1)',a(21,2)'*200,'--o','LineWidth',2,...
                       'MarkerEdgeColor','k',...
                       'MarkerFaceColor','g',...
                       'MarkerSize',10)
                   text(k(1)',a(1,1)',a(1,2)'*200,'S');
text(k(21)',a(21,1)',a(21,2)'*200,'T');
xlabel('km','fontsize',12);
ylabel('km','fontsize',12);
zlabel('m','fontsize',12);
title('三維路徑規劃空間','fontsize',12)
set(gcf, 'Renderer', 'ZBuffer')
hold on
plot3(k',a(:,1)',a(:,2)'*200,'--o')
matlab三維路徑規劃的方法是什么  
%% 適應度變化      
   
figure(2)
plot(BestFitness)
title('最佳個體適應度變化趨勢')
xlabel('迭代次數')
ylabel('適應度值')
matlab三維路徑規劃的方法是什么    

以上就是“matlab三維路徑規劃的方法是什么”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

滕州市| 密山市| 上饶市| 客服| 房产| 通城县| 张家港市| 凉城县| 梁山县| 凌源市| 山丹县| 汉川市| 巧家县| 印江| 宣武区| 长泰县| 平邑县| 兴文县| 独山县| 当涂县| 南汇区| 望谟县| 盐池县| 庆安县| 兰西县| 额尔古纳市| 沂源县| 通河县| 金昌市| 乌拉特后旗| 彩票| 长汀县| 天气| 玉林市| 故城县| 田东县| 股票| 济南市| 彰化县| 焦作市| 高要市|