這篇“怎么用matlab代碼解決單目標優(yōu)化問題”文章的知識點大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“怎么用matlab代碼解決單目標優(yōu)化問題”文章吧。
創(chuàng)新互聯(lián)從2013年創(chuàng)立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項目網(wǎng)站設(shè)計、成都做網(wǎng)站網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元莊浪做網(wǎng)站,已為上家服務(wù),為莊浪各地企業(yè)和個人服務(wù),聯(lián)系電話:13518219792
%_______________________________________________________________________________________% % Sea-Horse optimizer (SHO) % Developed in MATLAB R2018a % optimization problems. % Applied Intelligence %_______________________________________________________________________________________% clear all clc close all popsize=30; % Number of search agents Max_iter=100; % Maximum iteration F_name='F4'; % Name of the test function that can be from F1 to F23 (Table 2,3,4 in the paper) [LB,UB,Dim,fobj]=BenchmarkFunctions(F_name);% Load details of the selected benchmark function tic [ObjectiveFitness,ObjectivePosition,Convergence_curve,Trajectories,fitness_history, population_history]=SHO(popsize,Max_iter,LB,UB,Dim,fobj); time=toc; figure('Position',[454 445 694 297]); subplot(1,2,1); func_plot(F_name); title('Parameter space') xlabel('x_1'); ylabel('x_2'); zlabel([F_name,'( x_1 , x_2 )']) subplot(1,2,2); semilogy(1:Max_iter,Convergence_curve,'color','r','linewidth',2.5); title('Convergence curve'); xlabel('Iteration'); ylabel('Best score obtained so far') display(['The running time is:', num2str(time)]); display(['The best solution obtained by SHO is : ', num2str(ObjectiveFitness)]); display(['The best optimal sea horse of the objective funciton found by SHO is : ', num2str(ObjectivePosition)]);
以上就是關(guān)于“怎么用matlab代碼解決單目標優(yōu)化問題”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
文章標題:怎么用matlab代碼解決單目標優(yōu)化問題
網(wǎng)站URL:http://www.rwnh.cn/article12/jgpidc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站制作、品牌網(wǎng)站建設(shè)、做網(wǎng)站、標簽優(yōu)化、企業(yè)網(wǎng)站制作、Google
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)