资源简介
用GA遗传算法优化BP网络,预测风电功率,含实际数据和案例。
代码片段和文件信息
function ret=Code(lenchrombound)
%本函数将变量编码成染色体,用于随机初始化一个种群
% lenchrom input : 染色体长度
% bound input : 变量的取值范围
% ret output: 染色体的编码值
flag=0;
while flag==0
pick=rand(1length(lenchrom));
ret=bound(:1)‘+(bound(:2)-bound(:1))‘.*pick; %线性插值,编码结果以实数向量存入ret中
flag=test(lenchromboundret); %检验染色体的可行性
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-01-14 22:46 ga wind prediction\
文件 420 2009-08-16 22:48 ga wind prediction\Code.m
文件 1556 2009-08-31 23:41 ga wind prediction\Cross.m
文件 1158 2009-08-31 23:41 ga wind prediction\Decode.m
文件 1602 2009-11-12 19:20 ga wind prediction\Mutation.m
文件 825 2010-05-26 00:10 ga wind prediction\Select.m
文件 1081 2014-01-07 21:24 ga wind prediction\fun.m
文件 5154 2014-01-14 22:47 ga wind prediction\gabp.m
文件 874 2013-10-12 14:59 ga wind prediction\goontest.mat
文件 6430 2013-10-11 21:12 ga wind prediction\traindata1011.mat
- 上一篇:雷达交叉定位精度分析
- 下一篇:新型的配电网潮流计算的matlab源码
相关资源
- polyfit nihe 运用最小二乘法进行风电功
- Series Forcast 用于时间序列的预测
- 《神经模糊预测控制及其matlab实现》
- PNN,smote,BP-AdaBoost等类别不平衡分类
- 最小二乘算法(LMS)处理滤波并预测
- LBP特征提取的MATLAB实现
- Gammatone人耳滤波器
- 电力系统负荷预测的BP优化
- 遗传算法(GA)求tsp问题
- 基追踪(BP)算法实现
- BP神经网络PID S函数
- 多入多出非线性预测控制
- 混沌tent映射tent分叉程序
- Quantum GABP 自适应量子遗传算法优化
- bp神经网络的adp小程序
- 时间序列的人口预测
- ldpc码通过瑞利衰落信道功能分析BPS
- 用matlab编写的BP神经网络用于预测房价
- 基于灰色理论的矿井涌水量预测
- 基于优化GM(11)模型的矿井涌水量预
- 基于MATLAB的灰色预测模型的实现
- BP神经网络在矿井通风机故障诊断中的
- 基于BP神经网络的煤矿矿井空调模糊控
- matlab_OFDM调制解调(来自剑桥大学)
- Matlab的BPSKQPSK等调制解调仿真带界面
- 矿井提升机制动器的GA-BP故障诊断
- 基于PSO-BP的算法
- 用GA训练BP网络
- GA-BP算法的MATLAB程序
- BP神经网络应用预测公路运输量matla
评论
共有 条评论