资源简介
这是基于Matlab的RBF神经网络代码,里面有详细的解释和介绍,也有数据附件。有需要的可以下载进行慢慢的研究。
代码片段和文件信息
% RBF.m
% Radial Basis Function Neural Network (RBFNN) designed to predict house prices in the Boston area
%
% Francis Poole
% 16/04/15
%
function RBF()
%Initalise
clear all
close all
clc
dbstop if error
%Initial Free Parameters
M = 10; %Number of centres
Sigma = ‘cov‘; %Variance of centres - ‘cov‘ = covariance of k-means clusters ‘ave‘ = average distance between centres
lambda = 0; %Regularisation parameter
L = 3; %Number of committees
%Setup
%Get data
t = getTrainingData(); %Training data
p = getPredictionData(); %Prediction data
%Split training data to input and target
xStart = t(:1:end-1); %Input data
dStart = t(:end); %Target data
%K-fold setup
I = randperm(size(xStart1)); %Random indexe
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-04-20 14:39 RBF-Neural-Network-master\
文件 61692 2016-04-20 14:39 RBF-Neural-Network-master\RBF.m
- 上一篇:FFT和IFFT的MATLAB实现代码
- 下一篇:MATLAB编写的AR模型预测数据
评论
共有 条评论