首页 > 代码库 > 神经网络rbf
神经网络rbf
clc; clear; close all; ld=400; %定义学习样本的数量 x=rand(2,ld); %得到一个2 * 400的一个矩阵,每个元素在0-1之间 x=(x-0.5)*1.5*2; %-1.5, 1.5 x1=x(1,:); %得到矩阵的第1行 x2=x(2,:); %得到矩阵的第2行 F=20+x1.^2-10*cos(2*pi*x1)+x2.^2-10*cos(2*pi*x2); %定义样本输出 %训练网络 net=newrb(x,F); %generate the testing data interval=0.1; [i, j]=meshgrid(-1.5:interval:1.5); row=size(i); tx1=i(:); %列矩阵 tx1=tx1‘; %变为行矩阵 tx2=j(:); tx2=tx2‘; tx=[tx1;tx2]; %2 * n的矩阵 ,作为测试网络的输入数据 %testing ty=sim(net,tx); %调用网络,得到对应的输出结果 % 画出网络得到的结果 v=reshape(ty,row); figure subplot(1,3,2) mesh(i,j,v); zlim([0,60]) %plot the original function interval=0.1; [x1, x2]=meshgrid(-1.5:interval:1.5); F = 20+x1.^2-10*cos(2*pi*x1)+x2.^2-10*cos(2*pi*x2); subplot(1,3,1) mesh(x1,x2,F); zlim([0,60]) %plot the error subplot(1,3,3) mesh(x1,x2,F-v); zlim([0,60])
神经网络rbf
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。