资源简介
神经网络中hopfield算法的Matlab的实现,仅供各位参考~~ 挺不错的,很详细
代码片段和文件信息
function varargout = hopfieldNetwork(varargin)
% HOPFIELDNETWORK M-file for hopfieldNetwork.fig
% HOPFIELDNETWORK by itself creates a new HOPFIELDNETWORK or raises the existing
% singleton*.
%
% H = HOPFIELDNETWORK returns the handle to a new HOPFIELDNETWORK or the handle to
% the existing singleton*.
%
% HOPFIELDNETWORK(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in HOPFIELDNETWORK.M with the given input arguments.
%
% HOPFIELDNETWORK(‘Property‘‘Value‘...) creates a new HOPFIELDNETWORK or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before hopfieldNetwork_OpeningFunction gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to hopfieldNetwork_OpeningFcn via varargin.
%
% *See GUI Options on GUIDE‘s Tools menu. Choose “GUI allows only one
% instance to run (singleton)“.
%
% See also: GUIDE GUIDATA GUIHANDLES
% Copyright 2002-2003 The MathWorks Inc.
% Edit the above text to modify the response to help hopfieldNetwork
% Last Modified by GUIDE v2.5 21-Jan-2007 15:45:38
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @hopfieldNetwork_OpeningFcn ...
‘gui_OutputFcn‘ @hopfieldNetwork_OutputFcn ...
‘gui_LayoutFcn‘ [] ...
‘gui_Callback‘ []);
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State varargin{:});
else
gui_mainfcn(gui_State varargin{:});
end
% End initialization code - DO NOT EDIT
% --- Executes just before hopfieldNetwork is made visible.
function hopfieldNetwork_OpeningFcn(hobject eventdata handles varargin)
% This function has no output args see OutputFcn.
% hobject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% varargin command line arguments to hopfieldNetwork (see VARARGIN)
% Choose default command line output for hopfieldNetwork
handles.output = hobject;
N = str2num(get(handles.imageSize‘string‘));
handles.W = [];
handles.hPatternsDisplay = [];
% Update handles structure
guidata(hobject handles);
% UIWAIT makes hopfieldNetwork wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = hopfieldNetwork_OutputFcn(hobject eventdata handles)
% varargout cell array for returning output args (see VARARGOUT);
% hobject handle to figure
% eventdata reserved - to be defined in a future version
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3922 2007-01-21 16:16 hopfieldNetwork.fig
文件 9964 2007-01-21 16:17 hopfieldNetwork.m
文件 2110 2007-01-18 17:54 A.bmp
文件 2110 2007-01-18 17:55 B.bmp
文件 2110 2007-01-21 13:14 C.bmp
相关资源
- MATLAB界面编程》续——浅谈GUIDE和Si
- 优化方法:最速下降、阻尼牛顿、共
- 基于DWT和SVD结合的水印嵌入MATLAB代码
- matlab中频响函数
- 层次聚类matlab代码
- 基于差值法的图像变化检测代码MATL
- 在Matlab中实现三维立方体的绘制
- 鸢尾花数据集bp算法matlab分类
- 图像放大缩小Matlab-带GUI线性插值-最邻
- 用matlab实现二分法
- 简易matlab版2048
- cic 滤波器的matlab程序
- 生成宽带信号的matlab函数.rar
- 利用重叠相加法计算快速卷积(matl
- 人工蜂群算法 matlab代码
- 三种传统去噪方法MATLAB代码
- matlab Global RX探测算法
- LBP特征提取 程序 代码 MATLAB版
- ADI(交替方向隐格式)求解二维抛物
- 空间前方交会matlab源代码
- ESPRIT算法估计功率谱密度 matlab程序
- 最近邻分类器Matlab实现
- 局部保持投影原文及matlab代码
- MATLAB 2017b 破解文件
- 实现jpeg压缩 的matlab程序
- MATLAB设计语音信号滤波器
- 无约束最优化的matlab代码
- 水平集matlab实现
- 线性预测及其Matlab实现,源码,程序
- 用Matlab实现学生综合成绩评定的模糊
评论
共有 条评论