资源简介
用GUI设计神经网络的matlab代码--MATLAB神经网络原理与实例精解
代码片段和文件信息
%fit_test.m
% Solve an Input-Output Fitting problem with a Neural Network
% script generated by NFTOOL
% Created Sun Mar 11 15:31:43 CST 2012
%
% This script assumes these variables are defined:
%
% x - input data.
% y - target data.
% 自定义语句------------------------------
x=0:.2:2*pi+.2;
rng(2);y=sin(x)+rand(1length(x))*0.5;
plot(xy‘o-‘);
%-----------------------------------------
inputs = x;
targets = y;
% Create a Fitting Network
hiddenlayerSize = 10;
net = fitnet(hiddenlayerSize);
% Setup Division of Data for Training Validation Testing
net.divideParam.trainRatio = 70/100;
net.divideParam.valRatio = 15/100;
net.divideParam.testRatio = 15/100;
% Train the Network
[nettr] = train(netinputstargets);
% Test the Network
outputs = net(inputs);
errors = gsubtract(targetsoutputs);
performance = perform(nettargetsoutputs)
% View the Network
view(net)
% 自定义语句-----------------------------
xx=0:.1:2*pi+.2;
yy=sin(xx)+0.25;
yx=net(xx);
plot(xy‘o‘);
hold on;
plot(xxyy‘g-‘);
plot(xxyx‘r+‘);
legend(‘训练样本‘‘正弦曲线出‘‘实际输出‘);
%----------------------------------------
% Plots
% Uncomment these lines to enable various plots.
%figure plotperform(tr)
%figure plottrainstate(tr)
%figure plotfit(netinputstargets)
%figure plotregression(targetsoutputs)
%figure ploterrhist(errors)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1393 2012-10-26 19:09 第11章 用GUI设计神经网络\fit_test.m
文件 1384 2012-10-26 19:18 第11章 用GUI设计神经网络\pr_test.m
文件 1465 2012-10-25 08:26 第11章 用GUI设计神经网络\som_test.m
文件 1059 2012-10-25 04:54 第11章 用GUI设计神经网络\stock1.mat
目录 0 2017-08-16 17:02 第11章 用GUI设计神经网络
----------- --------- ---------- ----- ----
5301 5
- 上一篇:pHog纹理识别 matlab程序
- 下一篇:盒维数MATLAB计算程序
相关资源
- 盒维数MATLAB计算程序
- pHog纹理识别 matlab程序
- 金融风险VaR模型研究\\蒙特卡罗算法与
- 免疫算法MATLAB程序
- 小波变换进行语音增强的matlab代码
- MATLAB 计算空间桁架
- 蜂群算法源程序
- 如何用matlab绘制电机效率map图或发动
- 滑动平均值求解Matlab程序).txt
- 用于获取单粒子散射特性、散射系数
- 在matlab下,验证码识别部分,字符分
- matlab实现神经网络的数字识别,有训
- 字母识别,基于matlab的神经网络.zip
- 弹性光网络中的KSP-FF-RSA算法Matlab代码
- 基于matlab的DEABCC模型
- QC-LDPC码的校验矩阵构造
- zw_clud12345-7946299-matlab实现.zip
- matlab计算光栅衍射效率
- 基于MATLAB的离网型风力发电系统建模
- BP神经网络关于空气污染物含量预测
- 批处理最小二乘Matlab代码
- matlab简易加法计算器 GUI制作
- 基于matlab的连杆机构运动仿真源代码
- pso算法无功优化
- MATLAB人脸识别PCALDAKPCABP,可视化界面
- 疲劳检测(GUI 通过眼睛 坐姿等)
- zw_滑模变结构控制MATLAB仿真(第2版)
- 基于MATLAB语言的SAR卫星数据的读取及
- 布谷鸟算法平面选址问题.rar
- Matlab to HDL FPGA
评论
共有 条评论