⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hop_plotdig.m

📁 基于MATLAB完成的神经网络源程序,可以利用该程序完成有关神经网络的应用。
💻 M
字号:
function hop_plotdig(P,r,c,stri)% function hop_plotdig(P,r,c)% % displays the hopfield digit stored in P% if P is a vector, it much first be reshaped%% Hugh Pasika 1997if nargin > 1,  P=reshape(P,r,c);  endP=(P+1)*64;  colormap('bone');  image(P);a=gca;  set(a,'XTick',[ ]);  set(a,'YTick',[ ])if nargin == 4, xlabel(stri); end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -