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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? nnd13is.m

?? 神經網絡的程序說明,以及代碼 神經網絡工具箱應用
?? M
?? 第 1 頁 / 共 2 頁
字號:
function nnd13is(cmd,arg1,arg2,arg3)
%NND13IS Instar demonstration.
%
%	This demonstration requires either the MININNET functions
%	on the NND disk or the Neural Network Toolbox.

% First Version, 8-31-95.

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

% CONSTANTS
me = 'nnd13is';
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_box1 = H(32);
  p2_text1 = H(33);
  p2_box2 = H(34);
  p2_text2 = H(35);
  p2_box3 = H(36);
  p2_text3 = H(37);
  a_box = H(38);
  a_text = H(39);
  go_button = H(40);
  mode_ptr = H(41);
  W2_box1 = H(42);
  W2_text1 = H(43);
  W2_box2 = H(44);
  W2_text2 = H(45);
  W2_box3 = H(46);
  W2_text3 = H(47);
  n_box = H(48);
  n_text = H(49);
  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','Instar','','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,'Orange',...
    '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 150 60 20],...
    'string','Fruit',...
    'callback',[me '(''go'')']);
  uicontrol(...
    'units','points',...
    'position',[400 120 60 20],...
    'string','Clear',...
    'callback',[me '(''clear'')'])
  uicontrol(...
    'units','points',...
    'position',[400 90 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 0 0];
  set(fig,'nextplot','add')
  
  % NETWORK INPUT #1
  x1 = 70;
  y1 = 310;
  dy1 = 45;
  nndtext(x1-10,y1,'Orange?','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 = -30;
  nndtext(x1-10,y3-dy3,'Shape','right');
  nndtext(x1-10,y3,'Texture','right');
  nndtext(x1-10,y3+dy3,'Weight','right');
  p2_box1 = fill(x1+[0 20 20 0 0],y3-10+[0 0 20 20 0]-dy3,nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  p2_text1 = nndtext(x1+10,y3-dy3,'?');
  p2_box2 = fill(x1+[0 20 20 0 0],y3-10+[0 0 20 20 0],nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  p2_text2 = nndtext(x1+10,y3,'?');
  p2_box3 = fill(x1+[0 20 20 0 0],y3-10+[0 0 20 20 0]+dy3,nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  p2_text3 = nndtext(x1+10,y3+dy3,'?');

  % 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,'Orange?');
  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,'?');
  
  % 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]-dy3,'linewidth',2,'color',nnred);
  plot([x1+straight-10 x1+straight x2-sz],[y3-dy3 y3-dy3 y2],'linewidth',2,'color',nnred);
  W2_box1 = fill(x1+straight-50+[0 40 40 0 0],y3-10+[0 0 20 20 0]-dy3,nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  W2_text1 = nndtext(x1+straight-30,y3-dy3,sprintf('%5.2f',W2(1)));
  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_box2 = fill(x1+straight-50+[0 40 40 0 0],y3-10+[0 0 20 20 0],nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  W2_text2 = nndtext(x1+straight-30,y3,sprintf('%5.2f',W2(2)));
  plot([x1+20 x1+straight-50],[y3 y3]+dy3,'linewidth',2,'color',nnred);
  plot([x1+straight-10 x1+straight x2-sz],[y3+dy3 y3+dy3 y2],'linewidth',2,'color',nnred);
  W2_box3 = fill(x1+straight-50+[0 40 40 0 0],y3-10+[0 0 20 20 0]+dy3,nnltgray,...
    'edgecolor',nnred,...
    'linewidth',2,...
    'erasemode','none');
  W2_text3 = nndtext(x1+straight-30,y3+dy3,sprintf('%5.2f',W2(3)));

  % 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,''),...
    'fontsize',10)
  set(nndtext(160,109,'Orange?'),...
    'fontsize',10)
  set(nndtext(220,122,'Shape, Texture,'),...
    'fontsize',10)
  set(nndtext(220,109,'& Weight'),...
    '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_box1 p2_text1 p2_box2 p2_text2 p2_box3 p2_text3,...
       a_box a_text,...
       go_button mode_ptr,...
       W2_box1 W2_text1 W2_box2 W2_text2 W2_box3 W2_text3,...
       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.',...
    'Click [Update] to apply',...
    'the instar rule.',...
    '',...
    'Once the network has',...
    'seen a few oranges',...
    'it will recognize',...
    'them by their shape,',...
    'texture, and weight,',...
    'even if the first',...
    'scanner is 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

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
热久久久久久久| www激情久久| 国产精品资源在线| 激情综合网天天干| 久久99精品一区二区三区三区| 亚洲一区二区三区在线播放| 日韩美女视频一区二区| 亚洲欧洲av色图| 国产精品毛片久久久久久久| 欧美激情在线看| 国产精品福利一区二区| 中文字幕在线不卡一区二区三区| 欧美经典三级视频一区二区三区| 国产亚洲综合在线| 国产精品激情偷乱一区二区∴| 国产欧美日韩麻豆91| 成人免费在线播放视频| 亚洲精品欧美专区| 日本91福利区| 国产精品18久久久| 91无套直看片红桃| 欧美日本在线观看| 日韩一区二区电影| 亚洲人成网站精品片在线观看| 色天天综合色天天久久| 亚洲午夜精品17c| 亚洲高清免费在线| 韩国一区二区视频| 成人免费视频视频在线观看免费 | 91蝌蚪国产九色| 在线一区二区视频| 欧美tk—视频vk| 亚洲三级小视频| 久久国产精品色| 成人丝袜高跟foot| 91麻豆精品国产91久久久久久| 精品国产一区二区亚洲人成毛片 | 日韩国产欧美视频| 国产精品一区久久久久| 一本在线高清不卡dvd| 欧美日韩电影一区| 国产欧美日韩综合精品一区二区| 亚洲午夜免费视频| 国产酒店精品激情| 在线成人高清不卡| 最新热久久免费视频| 激情av综合网| 欧美精品久久天天躁| 成人免费在线播放视频| 国产一区二区免费在线| 欧美亚洲尤物久久| 中文字幕亚洲综合久久菠萝蜜| 蜜桃一区二区三区在线| 欧美视频一区二区三区在线观看| 欧美激情一区二区三区四区 | 国产成人av影院| 欧美日韩在线免费视频| 国产精品色在线| 国产精品一区二区三区99| 欧美日韩二区三区| 亚洲国产va精品久久久不卡综合| 99久精品国产| 国产精品午夜在线观看| 国产精品系列在线播放| 精品久久一区二区| 精品综合久久久久久8888| 日韩午夜中文字幕| 婷婷综合另类小说色区| 日本韩国一区二区| 一区二区三区中文免费| 91在线观看美女| 亚洲视频免费看| 91麻豆免费看| 樱花草国产18久久久久| 91啪亚洲精品| 一区二区在线观看免费 | 亚洲一区中文日韩| 色网站国产精品| 亚洲精品欧美综合四区| 欧美中文字幕一区| 亚洲高清三级视频| 久久久国产一区二区三区四区小说| 日韩在线卡一卡二| 欧美一区二区美女| 久久99热99| 国产精品热久久久久夜色精品三区| 国产不卡视频一区| 亚洲男同1069视频| 欧美日韩国产免费| 久草热8精品视频在线观看| 精品蜜桃在线看| 成人丝袜视频网| 亚洲午夜视频在线观看| 欧美电影免费观看高清完整版在线观看| 美国毛片一区二区| 欧美精品一区二区在线观看| 国产成人福利片| 亚洲大片精品永久免费| 欧美一区二区三区四区在线观看| 激情文学综合插| 亚洲天堂成人在线观看| 7777精品伊人久久久大香线蕉完整版| 美腿丝袜亚洲综合| 国产精品美女久久福利网站| 色婷婷综合五月| 蜜臀久久99精品久久久久宅男| 日韩一区二区高清| 波多野结衣中文字幕一区二区三区 | 日本精品裸体写真集在线观看 | 日韩女优毛片在线| av在线不卡免费看| 日韩精品视频网站| 国产精品欧美一区二区三区| 欧美精品一二三区| 成人免费视频app| 欧美aaa在线| 亚洲欧美一区二区三区极速播放 | 性做久久久久久久免费看| 欧美成人猛片aaaaaaa| 色综合视频在线观看| 丝袜美腿亚洲色图| 国产精品全国免费观看高清 | 午夜视频一区二区三区| 欧美激情一区三区| 欧美电影精品一区二区| 欧美性一级生活| 国产成人精品免费网站| 蜜臀av一区二区| 亚洲最大成人综合| 中文字幕欧美三区| 欧美va在线播放| 欧美日本在线视频| 欧美视频日韩视频在线观看| 成人精品视频一区| 国产一区高清在线| 蜜桃视频在线观看一区| 五月天亚洲精品| 一区二区成人在线| 亚洲三级在线免费| 国产精品福利电影一区二区三区四区 | 91原创在线视频| 不卡欧美aaaaa| 成人一区二区三区中文字幕| 麻豆91免费看| 亚洲风情在线资源站| 亚洲黄网站在线观看| 国产精品传媒入口麻豆| 欧美激情一区在线| 国产喷白浆一区二区三区| 欧美videos中文字幕| 欧美精品一区二区蜜臀亚洲| 91精品国产乱| 欧美一级搡bbbb搡bbbb| 欧美久久高跟鞋激| 在线不卡中文字幕| 日韩久久久久久| 久久久久久久久久久黄色| 久久综合久久鬼色中文字| 久久网站最新地址| 国产日韩欧美精品在线| 中文字幕精品—区二区四季| 亚洲国产精品二十页| 国产精品久线在线观看| 亚洲色图欧美偷拍| 亚洲综合区在线| 秋霞成人午夜伦在线观看| 精品写真视频在线观看| 国产在线精品免费av| 国产乱子伦视频一区二区三区| 国产在线视频精品一区| 99热精品一区二区| 在线免费av一区| 日韩免费观看高清完整版| 精品国产一区二区三区av性色| 久久精品视频在线免费观看| 国产精品久久三| 一区二区三区精密机械公司| 婷婷综合在线观看| 国产成人在线观看| 欧美午夜宅男影院| 欧美草草影院在线视频| 国产精品久线在线观看| 午夜精品视频在线观看| 国产一区二区看久久| 色香蕉久久蜜桃| 久久综合九色综合97婷婷女人 | 亚洲成人资源网| 极品美女销魂一区二区三区| 成人av在线播放网址| 欧美精品在欧美一区二区少妇| 欧美www视频| 一区二区三区免费看视频| 日韩精品一卡二卡三卡四卡无卡| 国产福利一区二区| 欧美色网一区二区| 国产午夜亚洲精品午夜鲁丝片| 亚洲免费在线观看| 国产美女娇喘av呻吟久久| 在线观看av一区| 日本一区二区综合亚洲|