clc;
clear all;
close all;
warning off;
%% 输入数据
f=xlsread('windspeed.xls','sheet1','B2:B1001');
%% 参数设置
pop = 8;%种群数量
Max_iteration = 10;%最大迭代次数
lb =[0.1,30]; %下边界
ub = [0.3,60];%上边界
dim = 2; %维度为2,
MaxIter = 500;
智能算法及其模型预测