• 大小: 1KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-05-23
  • 语言: Matlab
  • 标签: 感知器    

资源简介

使用单层感知器网络解决与逻辑问题,也是很简单的神经网络程序,帮助大家理解算法。有问题的话希望和大家一起讨论。

资源截图

代码片段和文件信息

% 单层感知器网络解决与逻辑问题
% 使用network函数建立新的神经网络
net = network;

% architecture
net.numInputs     = 1; % 输入源
net.numlayers     = 1; % 单层神经网络
net.biasConnect   = 1; % 有阈值
net.inputConnect  = 1; % 单层与输入相连
net.layerConnect  = 0; % 单层不相连
net.outputConnect = 1; % 单层与输出相连

% subobject structures
net.inputs{1}.range = [0 1; 0 1]; % 输入范围
net.layers{1}.transferFcn = ‘hardlim‘; % 激活函数
net.biases{1}.learnFcn    = ‘learnp‘;
net.biases{1}.initFcn     = ‘initzero‘;
net.inputWeights{11}.initFcn  = ‘initzero‘;
net.inputWeights{11}.learnFcn = ‘learnp‘;

% function properties

评论

共有 条评论