• 大小: 7KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-17
  • 语言: Matlab
  • 标签: MATLAB  例子  

资源简介

BP神经网络的MATLAB实现,包含多个例子。 BP神经网络的MATLAB实现,包含多个例子。 BP神经网络的MATLAB实现,包含多个例子。

资源截图

代码片段和文件信息

function [ output Y ] = BP_predict( input W theta)
%BP_ Summary of this function goes here
%   Detailed explanation goes here
    f = @sigmoid;
    n_w = numel(W);
    Y = cell(n_w+1 1);
    Y{1} = input‘;

    for i=1:n_w
        net = W{i}*Y{i} + theta{i};
        Y{i+1} = f(net);
    end
    output = Y{end};
end


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-05-18 15:46  BP\
     文件         337  2017-05-17 15:54  BP\BP_predict.m
     文件         311  2017-05-17 15:55  BP\BP_predict2.m
     文件        1544  2017-05-18 15:33  BP\BP_tranning.m
     文件         282  2017-05-17 14:36  BP\create_theta.m
     文件         282  2017-05-17 14:23  BP\create_w.m
     文件         623  2017-05-18 11:09  BP\demo.m
     文件        1814  2017-05-18 14:50  BP\demo_2class.m
     文件        1407  2017-05-18 15:31  BP\demo_3class.m
     文件        1256  2017-05-18 14:14  BP\demo_4class.m
     文件         340  2017-05-18 14:44  BP\four_class.mat
     文件         154  2017-05-15 22:05  BP\sigmoid.m
     文件         341  2017-05-18 15:41  BP\three_class.mat
     文件         299  2017-05-18 14:50  BP\two_class.mat

评论

共有 条评论