Welcome![Sign In][Sign Up]
Location:
Search - BP P

Search list

[AI-NN-PRbp算法及其改进的matlab实现

Description:

matlab语言编写的bp算法实现自适应PID控制。

共有:无导师的heb算法,有导师的delta算法,有导师的heb算法,改进的heb算法


Platform: | Size: 832 | Author: wander | Hits:

[Mathimatics-Numerical algorithmsBP算法源码

Description:

BP算法源码,


Platform: | Size: 15668 | Author: danlei0120 | Hits:

[Other resourcebp

Description: bp算法实现代码,在c++ builder 平台上实现. b p算法实现代码,在c++ builder 平台上实现.
Platform: | Size: 461465 | Author: 杨林 | Hits:

[Other resourceBP-hanshu

Description: B-P算法对函数的拟合程序-B-P algorithm to function fitting procedures
Platform: | Size: 1478 | Author: 王暄 | Hits:

[AI-NN-PRBP-hanshu

Description: B-P算法对函数的拟合程序-B-P algorithm to function fitting procedures
Platform: | Size: 1024 | Author: 王暄 | Hits:

[OtherroughsetandBPneuronetwork

Description: 基于粗糙集理论和BP神经网络的分层递阶分类算法。-based on rough set theory and neural networks hierarchical classification algorithm.
Platform: | Size: 220160 | Author: roc woods | Hits:

[matlabpid+bp

Description: 一种基于BP神经网络整定的PID控制的matlab源程序-BP neural network based tuning of PID control matlab source
Platform: | Size: 5120 | Author: wenston | Hits:

[matlabbpsuanfa

Description: 用GA直接训练BP网络的权重算法 主程序:gafault.m 它包括以下子程序: 1. BP网络初始化:nninit.m――给出P,T,R,S1,S2; 2. 适应值计算函数:gabpEval.m; 3.将遗传算法的编码解码为BP网络所对应的权值、阈值函数:gadecod.m; -GA directly with BP network training algorithm the weights of the main program: gafault.m It includes the following subroutines: 1. BP network initialization: nninit.m-- given P, T, R, S1, S2 2. Adaptation value function: gabpEval.m 3. Genetic algorithm for BP network codec corresponding to the right value, the threshold function: gadecod.m
Platform: | Size: 1024 | Author: QAP | Hits:

[matlabbp

Description: 如何用MATLAB的神经网络工具箱实现三层BP网络。仿真出一个3层的BP网络-如 ?斡肕ATLAB的神 ?网络 ???呦涫迪秩??鉈P网络 ??抡??鲆 桓 ? ?愕腂P网络
Platform: | Size: 4096 | Author: 劏个老鼠 | Hits:

[Algorithmbp

Description: bp算法实现代码,在c++ builder 平台上实现. b p算法实现代码,在c++ builder 平台上实现. -bp algorithm code, in c++ builder platform. bp algorithm code, in c++ builder platform.
Platform: | Size: 460800 | Author: 杨林 | Hits:

[matlab2008101523144260

Description: 一、用GA直接训练BP网络的权重算法 主程序:gafault.m 它包括以下子程序: 1. BP网络初始化:nninit.m――给出P,T,R,S1,S2; 2. 适应值计算函数:gabpEval.m; 3.将遗传算法的编码解码为BP网络所对应的权值、阈值函数:gadecod.m; 二、用GA先求BP网络的权重,再用纯BP直接训练BP的混合GA-BP算法 主程序:gabpfault.m 它包括以下子程序: 1. 网络初始化:nninit.m――给出P,T,R,S1,S2; 2. 适应值计算函数:gabpEval.m; 3.将遗传算法的编码解码为BP网络所对应的权值、阈值函数:gadecod.m; 三、纯BP   主程序:(1)bpfault.m 在MATLAB5.2上       (2)bpfault.m 在MATLAB6.5上 为后来所加 -err
Platform: | Size: 35840 | Author: 梅丽 | Hits:

[AI-NN-PRbp

Description: #include "iostream.h" #include "iomanip.h" #define N 20 //学习样本个数 #define IN 1 //输入层神经元数目 #define HN 8 //隐层神经元数目 #define ON 1 //输出层神经元数目 double P[IN] //单个样本输入数据 double T[ON] //单个样本教师数据 double W[HN][IN] //输入层至隐层权值 double V[ON][HN] //隐层至输出层权值 double X[HN] //隐层的输入 double Y[ON] //输出层的输入 double H[HN] //隐层的输出 -# Include iostream.h# Include iomanip.h# Define N 20// learning sample number# Define IN 1// input layer neurons in the number# Define HN 8// hidden layer neuron The number# define ON 1// output layer neuron number of double P [IN]// single sample input data double T [ON]// single sample data teachers double W [HN] [IN]// input layer to hidden layer weight double V [ON] [HN]// hidden layer to output layer weights double X [HN]// hidden layer input double Y [ON]// output layer input double H [HN]// hidden layer output
Platform: | Size: 2048 | Author: xx | Hits:

[Mathimatics-Numerical algorithmsBP

Description: BP神经网络程序,C语言源代码 如下: #include "iostream.h" #include "iomanip.h" #include "stdlib.h" #include "math.h" #include "stdio.h" #include "time.h" #include "fstream.h" #define N 120 //学习样本个数 #define IN 3 //输入层神经元数目 #define HN 2 //隐层神经元数目 #define ON 2 //输出层神经元数目 #define Z 20000 //旧权值保存-》每次study的权值都保存下来 double P[IN] //单个样本输入数据 double T[ON] //单个样本教师数据 double U11[IN][HN] //输入层至第一隐层权值 double V[HN][ON] //隐层至输出层权值 double X1[HN] //第一隐层的输入 double Y[ON] //输出层的输入 double H1[HN] //第一隐层的输出 double O[ON] //输出层的输出 double YU_HN1[HN] //第一隐层的阈值 double YU_ON[ON] //输出层的阈值 double err_m[N] //第m个样本的总误差 double a //学习效率 double alpha //动量因子-BP net
Platform: | Size: 3072 | Author: 梅汉文 | Hits:

[Software EngineeringBP

Description: 基于BP神经网络算法的研究,主要比较了模拟退火算法、遗传算法、P神经网络的区别,提出了一种比较优化的BP算法-the research for BP
Platform: | Size: 317440 | Author: 史小犇 | Hits:

[Mathimatics-Numerical algorithmsGA_BP

Description: 一、用GA直接训练BP网络的权重算法 主程序:gafault.m 它包括以下子程序: 1. BP网络初始化:nninit.m――给出P,T,R,S1,S2; 2. 适应值计算函数:gabpEval.m; 3.将遗传算法的编码解码为BP网络所对应的权值、阈值函数:gadecod.m; 二、用GA先求BP网络的权重,再用纯BP直接训练BP的混合GA-BP算法 主程序:gabpfault.m 它包括以下子程序: 1. 网络初始化:nninit.m――给出P,T,R,S1,S2; 2. 适应值计算函数:gabpEval.m; 3.将遗传算法的编码解码为BP网络所对应的权值、阈值函数:gadecod.m; 三、纯BP   主程序:(1)bpfault.m 在MATLAB5.2上       (2)bpfault.m 在MATLAB6.5上 为后来所加 -First, the direct training of BP network with GA the weight algorithm Main program: gafault.m It includes the following routines: 1. BP network initialization: nninit.m-- given P, T, R, S1, S2 2. Fitness calculation functions: gabpEval.m 3. Of genetic algorithms for the BP network codec corresponding weights, the threshold function: gadecod.m Second, with the GA first aim at the weight of BP network, and then direct the training of pure BP mixture of BP algorithm GA-BP Main program: gabpfault.m It includes the following routines: 1. Network initialization: nninit.m-- given P, T, R, S1, S2 2. Fitness calculation functions: gabpEval.m 3. Of genetic algorithms for the BP network codec corresponding weights, the threshold function: gadecod.m 3, pure BP Main program: (1) bpfault.m on the MATLAB5.2 (2) bpfault.m the MATLAB6.5 for the subsequently added
Platform: | Size: 38912 | Author: zhanghr | Hits:

[AI-NN-PRBP

Description: 利用BP网络实现函数逼近,本程序以cos(k*pi*p)为例进行逼近-Function approximation using BP network, the procedures to cos (k* pi* p) as an example approximation
Platform: | Size: 1024 | Author: tanjing | Hits:

[matlabANN

Description: matlab开发的RBF、BP PID算法,已经过测试-matlab development of RBF, BP PID algorithm has been tested
Platform: | Size: 10240 | Author: 刘春元 | Hits:

[matlabBP-NET

Description: 用动量梯度下降法训练BP网络 已知输入向量为P=[-1,-2,3,1 -1,1,5,3],目标输出为T=[-1,-1,1,1]。 -Gradient descent with momentum BP network training input vector is known as P = [-1,-2,3,1 -1,1,5,3], the target output for the T = [-1,-1,1, 1].
Platform: | Size: 59392 | Author: 张玲 | Hits:

[AI-NN-PRC-P-P-and-C-bp-NN

Description: C++和C编写的bp神经网络源程序,对bp神经网络的学习很有用-C++ and C source code written in bp neural network,it is useful to bp neural network learning
Platform: | Size: 12288 | Author: 洛龙行 | Hits:

[matlabglobal p

Description: GA优化BP神经网络初始权值,阈值,从而增强其鲁棒性(GA optimizes the initial weights and thresholds of BP neural network, thereby enhancing its robustness.)
Platform: | Size: 186368 | Author: Wyy_999 | Hits:
« 12 3 »

CodeBus www.codebus.net