亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? nnd13uh.m

?? 神經(jīng)網(wǎng)絡(luò)設(shè)計(jì)書(shū)籍配套源碼(matlab平臺(tái))
?? M
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
function nnd13uh(cmd,arg1,arg2,arg3)
%NND13UH Unsupervised Hebb demonstration.
%
%	This demonstration requires either the MININNET functions
%	on the NND disk or the Neural Network Toolbox.

% First Version, 8-31-95.

%==================================================================

% CONSTANTS
me = 'nnd13uh';
Fs = 8192;
pause1 = 0.7;
pause2 = 0.1;

% DEFAULTS
if nargin == 0, cmd = ''; else cmd = lower(cmd); end

% FIND WINDOW IF IT EXISTS
fig = nnfgflag(me);
if length(get(fig,'children')) == 0, fig = 0; end

% GET WINDOW DATA IF IT EXISTS
if fig
  H = get(fig,'userdata');
  fig_axis = H(1);         % window axis
  desc_text = H(2);        % handle to first line of text sequence
  lines = H(3:4);          % belt circle lines
  fruit_indicator = H(5);  % fruit entrance indicator
  top_indicator = H(6);    % top exit indicator
  bottom_indicator = H(7); % bottom exit indicator;
  sounds = H(8:15);        % pointers to sounds
  angle_ptr = H(16);       % angle (deg) of lines in conveyer ends
  fruit_ptr = H(17);       % pointer to fruit shape
  arrows = H(21:22);       % handles to arrows
  rb1 = H(23);             % Working radio button
  rb2 = H(24);             % Not working radio button
  cross = H(25);           % Not working cross
  p1_ptr = H(26);          % Input #1
  p2_ptr = H(27);          % Input #2
  a_ptr = H(28);           % Output
  W2_ptr = H(29);          % Weights #2
  p1_box = H(30);
  p1_text = H(31);
  p2_box = H(32);
  p2_text = H(33);
  a_box = H(34);
  a_text = H(35);
  go_button = H(36);
  mode_ptr = H(37);
  W2_box = H(38);
  W2_text = H(39);
  n_box = H(40);
  n_text = H(41);
  mode = get(mode_ptr,'userdata');
end

%==================================================================
% Activate the window.
%
% ME() or ME('')
%==================================================================

if strcmp(cmd,'')
  if fig
    figure(fig)
    set(fig,'visible','on')
  else
    feval(me,'init')
  end

%==================================================================
% Close the window.
%
% ME() or ME('')
%==================================================================

elseif strcmp(cmd,'close') & (fig)
  delete(fig)

%==================================================================
% Initialize the window.
%
% ME('init')
%==================================================================

elseif strcmp(cmd,'init') & (~fig)

  % CHECK FOR TRANSFER FUNCTIONS
  if ~nnfexist(me), return, end

  % NEW DEMO FIGURE
  fig = nndemof2(me,'DESIGN','Unsupervised Hebb','','Chapter 13');

  set(fig, ...
    'windowbuttondownfcn',nncallbk(me,'down'), ...
    'BackingStore','off',...
    'nextplot','add');
  H = get(fig,'userdata');
  fig_axis = H(1);
  desc_text = H(2);

  % SOUND POINTERS
  wind = uicontrol('visible','off','userdata',nndsnd(3));
  knock = uicontrol('visible','off','userdata',nndsnd(5));
  scan = uicontrol('visible','off','userdata',nndsnd(1));
  classify = uicontrol('visible','off','userdata',nndsnd(4));
  blip = uicontrol('visible','off','userdata',nndsnd(6));
  bloop = uicontrol('visible','off','userdata',nndsnd(7));
  blp = uicontrol('visible','off','userdata',nndsnd(9));
  tribble = uicontrol('visible','off','userdata',nndsnd(8));

  % ICON
  nndicon(13,458,363,'shadow')

  % CONVEYER BELT
  deg = pi/180;
  angle = [0:5:360]*deg;
  cx = cos(angle);
  cy = sin(angle);

  % ENTRANCE BOX
  x = 60;
  y = 20;
  fill([0 0 x+10 x+10],y+[70 50 50 70],nndkblue,...
    'edgecolor','none')
  fill(x+[10 10 50 50],y+[80 40 40 80],nndkblue,...
    'edgecolor','none')
  plot([0 x+[10 10 50 50 10 10] 0],...
    y+[50 50 40 40 80 80 70 70],...
    'color',nnred)
  left_arrow = fill(x+30+[-5 -5 -10 0 10 5 5],y+60+[15 5 5 -15 5 5 15],nndkblue,...
    'edgecolor',nnred,...
    'erasemode','none');
  fruit_ind = text(x-25,y+60,'Fruit',...
    'color',[0.8 0.8 0],...
    'fontweight','bold',...
    'horiz','center',...
    'erasemode','none');

  % LEFT CIRCLE
  line_angle = 45*deg;
  fill(x-10+cx*10,y+10+cy*10,nnred,...
    'edgecolor',nndkblue,...
    'linewidth',2)
  line_1 = plot(x-10+cos([0 pi]+line_angle)*8,y+10+sin([0 pi]+line_angle)*8,...
    'color',nndkblue,...
    'erasemode','none',...
    'linewidth',2);

  % RIGHT CIRCLE
  x = 320;
  fill(x+10+cx*10,y+10+cy*10,nnred,...
    'edgecolor',nndkblue,...
    'linewidth',2)
  line_2 = plot(x+10+cos([0 pi]+line_angle)*8,y+10+sin([0 pi]+line_angle)*8,...
    'color',nndkblue,...
    'erasemode','none',...
    'linewidth',2);

  % BELT
  plot([50 330],[y y]+20,...
    'color',nndkblue,...
    'linewidth',2)
  plot([50 330],[y y],...
    'color',nndkblue,...
    'linewidth',2)
  
  % SENSOR BOX #1
  x = 140;
  fill(x+[0 40 20],y+[40 40 80],nndkblue,...
    'edgecolor',nnred)
  fill(x+[0 40 40 0],y+[14 14 8 8],nndkblue,...
    'edgecolor',nnred)
  cross = plot(x+[15 25 20 25 15],y+[50 60 55 50 60],...
    'color',nndkblue,...
    'linewidth',3,...
    'erasemode','none');
  
  % SENSOR BOX #2
  x = 200;
  fill(x+[0 40 20],y+[40 40 80],nndkblue,...
    'edgecolor',nnred)
  fill(x+[0 40 40 0],y+[14 14 8 8],nndkblue,...
    'edgecolor',nnred)

  % EXIT BOX
  x = 320;
  fill([x-10 x-10 380 380],y+[80 62 62 80],nndkblue,...
    'edgecolor','none')
  fill([x-10 x-10 380 380],y+[40 58 58 40],nndkblue,...
    'edgecolor','none')
  fill(x-[10 10 50 50],y+[80 40 40 80],nndkblue,...
    'edgecolor','none')
  plot([378 x-[50 50] 378],y+[80 80 40 40],...
    'color',nnred)
  plot([378 x-[10 10] 378],y+[62 62 58 58],...
    'color',nnred)
  right_arrow = fill(x-30+[-5 -5 -10 0 10 5 5],y+60-[15 5 5 -15 5 5 15],nndkblue,...
    'edgecolor',nnred,...
    'erasemode','none');
  top_ind = text(x+25,y+71,'Banana',...
    'color',[0.8 0.8 0],...
    'fontweight','bold',...
    'horiz','center',...
    'erasemode','none');
  bottom_ind = text(x+24,y+48,'Other',...
    'color',[0.8 0.8 0],...
    'fontweight','bold',...
    'horiz','center',...
    'erasemode','none');

  % BUTTONS
  go_button = uicontrol(...
    'units','points',...
    'position',[400 165 60 20],...
    'string','Fruit',...
    'callback',[me '(''go'')']);
  uicontrol(...
    'units','points',...
    'position',[400 130 60 20],...
    'string','Clear',...
    'callback',[me '(''clear'')'])
  uicontrol(...
    'units','points',...
    'position',[400 95 60 20],...
    'string','Contents',...
    'callback','nndtoc')
  uicontrol(...
    'units','points',...
    'position',[400 60 60 20],...
    'string','Close',...
    'callback',[me '(''close'')'])

  % LOWER SEPERATION BAR
  fill([0 0 380 380],130+[0 4 4 0],nndkblue,...
    'edgecolor','none')

  % UPPER SEPERATION BAR
  fill([0 0 380 380],160+[0 4 4 0],nndkblue,...
    'edgecolor','none')
 
  % RADIO BUTTONS
  set(nndtext(20,147,'First Scanner:','left'),...
    'fontsize',12)
  rb1 = uicontrol(...
    'units','points',...
    'position',[140 139 100 20],...
    'string','Working',...
    'style','radio',...
    'value',1,...
    'callback',[me '(''working'')']);
  rb2 = uicontrol(...
    'units','points',...
    'position',[250 139 100 20],...
    'string','Not Working',...
    'style','radio',...
    'callback',[me '(''notworking'')']);

  W1 = 1;
  W2 = 0;
  set(fig,'nextplot','add')
  
  % NETWORK INPUT #1
  x1 = 70;
  y1 = 310;
  dy1 = 55;
  nndtext(x1-10,y1+10,'Banana','right');
  nndtext(x1-10,y1-10,'Shape?','right');
  p1_box = fill(x1+[0 20 20 0 0],y1-10+[0 0 20 20 0],nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  p1_text = nndtext(x1+10,y1,'?');
  set(p1_text,'erasemode','none');

  % NETWORK INPUT #2
  y3 = y1-2*dy1;
  dy3 = 20;
  nndtext(x1-10,y3+10,'Banana','right');
  nndtext(x1-10,y3-10,'Smell?','right');
  p2_box = fill(x1+[0 20 20 0 0],y3-10+[0 0 20 20 0],nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  p2_text = nndtext(x1+10,y3,'?');
  set(p2_text,'erasemode','none');

  % NEURON
  x2 = x1+165;
  y2 = y1-dy1;
  sumdist = 50;
  sz = 15;
  plot(x2+[0 0 sumdist],y2+[-25 0 0],'linewidth',2,'color',nnred);
  plot(x2-20+[0 40 40 0 0],y2-45+[0 0 20 20 0],'color',nnred,'linewidth',2);
  plot(x2+[0 0],y2+[-45 -55],'linewidth',2,'color',nnred);
  plot(x2+sumdist+sz+[20 30 0 30 20],y2+[10 0 0 0 -10],'linewidth',2,'color',nnred);
  nndtext(x2+sumdist+sz+45,y2+30,'Banana?');
  nndsicon('sum',x2,y2,sz)
  nndsicon('hardlim',x2+sumdist,y2,sz)
  nndtext(x2,y2-36,'-0.5');
  nndtext(x2,y2-66,'1');
  a_box = fill(x2+sumdist+sz+35+[0 20 20 0 0],y2-10+[0 0 20 20 0],nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  a_text = nndtext(x2+sumdist+sz+45,y2,'?');
  set(a_text,'erasemode','none');

  % NET INPUT
  n_box = fill(x2+5+[0 40 40 0 0],y2+30+[0 0 20 20 0],nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  n_text = nndtext(x2+25,y2+40,'?');
  plot(x2+25+[0 0],y2+[30 0],':','linewidth',2,'color',nnred);
  
  % WEIGHTS #1
  straight = 95;
  plot([x1+20 x1+straight-50],[y1 y1],'linewidth',2,'color',nnred);
  plot([x1+straight-10 x1+straight x2-sz],[y1 y1 y2],'linewidth',2,'color',nnred);
  plot(x1+straight-50+[0 40 40 0 0],y1-10+[0 0 20 20 0],'color',nnred,'linewidth',2);
  nndtext(x1+straight-30,y1,'1');

  % WEIGHTS #2
  straight_dist = 100;
  plot([x1+20 x1+straight-50],[y3 y3],'linewidth',2,'color',nnred);
  plot([x1+straight-10 x1+straight x2-sz],[y3 y3 y2],'linewidth',2,'color',nnred);
  W2_box = fill(x1+straight-50+[0 40 40 0 0],y3-10+[0 0 20 20 0],nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  W2_text = nndtext(x1+straight-30,y3,sprintf('%5.2f',W2));

  % INPUT HEADING
  temp = nndtext(x1+10,y1+30,'Inputs');

  % WEIGHT HEADING
  nndtext(x1+straight_dist-35,y1+30,'Weights');

  % SCANNER NAMES
  set(nndtext(160,120,'Banana'),...
    'fontsize',10)
  set(nndtext(160,110,'Shape?'),...
    'fontsize',10)
  set(nndtext(220,120,'Banana'),...
    'fontsize',10)
  set(nndtext(220,110,'Smell?'),...
    'fontsize',10)

  % SAVE WINDOW DATA AND LOCK
  angle_ptr = uicontrol('visible','off','userdata',line_angle);
  fruit_ptr = uicontrol('visible','off','userdata',[]);

  p1_ptr = uicontrol('visible','off','userdata',[]);
  p2_ptr = uicontrol('visible','off','userdata',[]);
  a_ptr = uicontrol('visible','off','userdata',[]);
  W2_ptr = uicontrol('visible','off','userdata',W2);
  W2_ptr = uicontrol('visible','off','userdata',W2);
  mode_ptr = uicontrol('visible','off','userdata',1);

  H = [fig_axis, ...
       desc_text, ...
       line_1 line_2, ...
       fruit_ind top_ind bottom_ind, ...
       wind knock scan classify blip bloop blp tribble, ...
       angle_ptr fruit_ptr 0 0 0, ...
       left_arrow right_arrow,rb1 rb2 cross, ...
       p1_ptr p2_ptr a_ptr W2_ptr,...
       p1_box p1_text p2_box p2_text a_box a_text,...
       go_button mode_ptr W2_box W2_text,...
       n_box, n_text];

  set(fig,'userdata',H,'nextplot','new')

  % INSTRUCTION TEXT
  feval(me,'instr');

  % LOCK WINDOW
  set(fig,...
   'nextplot','new',...
   'color',nnltgray);

  nnchkfs;

%==================================================================
% Display the instructions.
%
% ME('instr')
%==================================================================

elseif strcmp(cmd,'instr') & (fig)
  nnsettxt(desc_text,...
    'Click [Fruit] to send',...
    'a fruit down the belt',...
    'to be recognized.',...
    'Click [Update] to apply',...
    'the Hebb rule.',...
    '',...
    'When the lower weight',...
    'is > 0.5 the network',...
    'will recognize',...
    'bananas with the',...
    '1st scanner off.')
    
%==================================================================
% Respond to fruit.
%
% ME('fruit')
%==================================================================

elseif strcmp(cmd,'go') & (fig) & (nargin == 1) & (mode == 1);

  % GET DATA
  wind = get(sounds(1),'userdata');
  knock = get(sounds(2),'userdata');
  scan = get(sounds(3),'userdata');
  classify = get(sounds(4),'userdata');
  blip = get(sounds(5),'userdata');
  bloop = get(sounds(6),'userdata');
  blp = get(sounds(7),'userdata');
  tribble = get(sounds(8),'userdata');
  angle = get(angle_ptr,'userdata');
  fruit = get(fruit_ptr,'userdata');
  axes(fig_axis);

  % NEW FRUIT
  nnpause(pause1)
  x = 82;
  y = 42;

  % FRUIT ID, COLOR & SHAPE

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲成人av免费| 日韩女同互慰一区二区| 欧美日韩国产在线播放网站| 9191精品国产综合久久久久久| 欧美成人a∨高清免费观看| 国产日韩av一区| 亚洲综合区在线| 久久99国产精品成人| 99在线精品观看| 正在播放亚洲一区| 国产精品私房写真福利视频| 亚洲小少妇裸体bbw| 国产一区二区三区在线观看免费| 99久久婷婷国产| 日韩欧美在线1卡| 亚洲男人的天堂在线aⅴ视频| 美女精品一区二区| 成人动漫一区二区在线| 91精品国产综合久久久久久久| 国产精品欧美极品| 日本午夜精品视频在线观看| 99久久久国产精品免费蜜臀| 日韩视频免费直播| 亚洲乱码中文字幕| 蜜桃av一区二区三区电影| 99精品久久只有精品| 精品播放一区二区| 一区二区三区日本| 国产99精品国产| 制服丝袜成人动漫| 亚洲欧美国产三级| 国产福利精品导航| 欧美一区二区网站| 一区二区三区在线播| 国产999精品久久久久久绿帽| 91精品蜜臀在线一区尤物| 亚洲免费视频中文字幕| 国产成人精品免费在线| 日韩欧美国产三级| 亚洲国产一区二区在线播放| 成人爱爱电影网址| 久久久亚洲高清| 免费观看一级特黄欧美大片| 欧美在线一二三| **网站欧美大片在线观看| 国产麻豆成人精品| 日韩欧美国产系列| 日韩中文字幕亚洲一区二区va在线| 97久久人人超碰| 国产免费久久精品| 国产一区啦啦啦在线观看| 欧美一激情一区二区三区| 亚洲成人1区2区| 欧美午夜精品理论片a级按摩| 国产精品成人网| 不卡一二三区首页| 国产精品久久久久久久久免费樱桃 | 一区二区三区国产精华| 成人精品一区二区三区中文字幕| 精品99久久久久久| 久久国产精品区| 日韩免费电影网站| 免费看欧美女人艹b| 91精品国产91久久久久久最新毛片 | 高清久久久久久| 久久久精品综合| 国产酒店精品激情| 久久久蜜臀国产一区二区| 久久电影网站中文字幕| 日韩精品一区二区三区四区| 日韩不卡一区二区| 日韩欧美国产一区二区三区| 久久成人麻豆午夜电影| 日韩你懂的在线观看| 狠狠色狠狠色综合系列| 精品成人佐山爱一区二区| 国产精品白丝av| 欧美国产精品劲爆| 99免费精品视频| 亚洲精品国产一区二区精华液 | 亚洲成人手机在线| 在线电影一区二区三区| 免播放器亚洲一区| 精品国产一区二区三区不卡| 国产美女在线精品| 国产精品每日更新在线播放网址| 成人av午夜电影| 亚洲一区二区四区蜜桃| 欧美理论在线播放| 久久精品国产999大香线蕉| 2欧美一区二区三区在线观看视频| 国产自产v一区二区三区c| 欧美国产欧美综合| 色婷婷av一区二区三区之一色屋| 一区二区日韩av| 欧美肥胖老妇做爰| 麻豆精品视频在线观看| 久久久国际精品| 色婷婷综合久久久中文一区二区| 亚洲欧美成aⅴ人在线观看| 欧美在线观看一二区| 日韩成人午夜精品| 久久综合色8888| 99天天综合性| 丝袜美腿亚洲色图| 久久夜色精品国产噜噜av| 成人免费不卡视频| 亚洲电影视频在线| 精品国产区一区| 91在线免费看| 日韩va欧美va亚洲va久久| 欧美激情综合五月色丁香| 在线看一区二区| 精品影院一区二区久久久| 中文字幕日韩一区| 欧美福利视频导航| 不卡视频一二三| 免费一级片91| 亚洲日本在线a| 日韩一区二区免费在线电影 | 亚洲乱码国产乱码精品精可以看 | 久久国产乱子精品免费女| 中文av一区特黄| 欧美精三区欧美精三区| 国产精品一区二区不卡| 亚洲综合丁香婷婷六月香| 精品国产乱码久久久久久夜甘婷婷 | 欧美大片免费久久精品三p| gogo大胆日本视频一区| 美女视频黄a大片欧美| 综合久久一区二区三区| 日韩欧美123| 日本韩国欧美一区| 韩国女主播成人在线| 亚洲亚洲人成综合网络| 国产三级精品三级| 56国语精品自产拍在线观看| 91在线免费视频观看| 精品午夜一区二区三区在线观看| 一区二区三区资源| 国产日韩v精品一区二区| 欧美一区二区在线不卡| 欧美主播一区二区三区美女| 成人做爰69片免费看网站| 久久国产精品72免费观看| 亚洲大片免费看| 日韩理论片中文av| 国产午夜精品久久久久久免费视 | 久久99日本精品| 亚洲高清视频中文字幕| 中文字幕中文字幕在线一区 | 成人毛片在线观看| 久草中文综合在线| 三级成人在线视频| 亚洲免费资源在线播放| 日本一区二区不卡视频| 精品伦理精品一区| 制服丝袜国产精品| 欧美日产国产精品| 欧美在线播放高清精品| 成人av网址在线| 国产精品1区2区| 韩日精品视频一区| 捆绑变态av一区二区三区| 亚洲成人黄色小说| 亚洲国产精品人人做人人爽| 一区二区三区色| 亚洲自拍偷拍麻豆| 一区二区三区美女视频| 亚洲欧洲三级电影| 国产精品久久夜| 欧美激情艳妇裸体舞| 久久精品夜夜夜夜久久| 久久婷婷成人综合色| 精品久久久影院| 日韩精品一区二| 欧美成人一区二区三区在线观看| 欧美一区二区三区免费| 日韩手机在线导航| 日韩精品一区二区三区视频播放 | 国产在线播放一区三区四| 久久国产尿小便嘘嘘尿| 精品一区二区三区久久| 九九精品视频在线看| 精品制服美女丁香| 国产一区二区精品在线观看| 国精产品一区一区三区mba桃花 | 国产精品色哟哟网站| 国产欧美视频一区二区| 欧美国产一区在线| 国产精品国产成人国产三级| 自拍偷拍国产精品| 亚洲一区免费视频| 婷婷开心久久网| 久久精品国产亚洲a| 国模无码大尺度一区二区三区| 国产精品一二三区| av午夜精品一区二区三区| 色综合久久久久久久| 欧美日韩精品免费|