资源简介

Elman神经网络回归模型,GA优化权值阈值

资源截图

代码片段和文件信息

%遗传算法优化神经网络结构及其权系数的程序采用实数编码
clear  all
clear  all
%遗传算法优化神经网络结构及其权系数的程序采用实数编码
clear  all
close all
clc
global maxjiedian
global popsize
global chromlength
global maxpop
global ny
global nx              
global hh
[file1path1]=uigetfile(‘*.*‘‘打开数据文件‘);
filename1=strcat(path1file1);
fid1=fopen(filename1‘r‘);
prompt={‘除Y外的列数‘‘样本总数‘‘取其中用于拟合的样本个数‘‘输入需要预测向量因子‘};
def={‘10‘‘48‘‘46‘‘0 0 0 0 0 0 0 0 0 0‘};
lineNo=1;
dlgtitle=‘参数输入,遗传算法集成神经网络,吴建生2005/09/10‘;
answer=inputdlg(promptdlgtitlelineNodef);
answer=char(answer);           
ny=str2num(answer(1:));
nx=str2num(answer(2:));
it=str2num(answer(3:));
wxyq=str2num(answer(4:));              
prompt={‘输入节点个数‘‘种群个数‘‘最大进化代数‘‘隐节点下限‘‘隐节点上限‘‘输出节点个数‘};
def={‘10‘‘50‘‘50‘‘0.5‘‘1.5‘‘1‘};
dlgTile=‘参数输入,   遗

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      21934  2007-05-30 15:37  elman.m

----------- ---------  ---------- -----  ----

                22152                    2


评论

共有 条评论