📄 demo_nn.m
字号:
% File Name : demo_nn.m
% Purpose : Drawing the Demo Figure
% Author : Hossam E. Mostafa Abdelbaki, School of Computer Science,
% University of Centeral Florida (UCF).
% Release : ver. 1.0.
% Date : October 1998.
%
% RNNSIM is a software program available to the user without any
% license or royalty fees. Permission is hereby granted to use, copy,
% modify, and distribute this software for any purpose. The Author
% and UCF give no warranty, express, implied, or statuary for the
% software including, without limitation, waranty of merchantibility
% and warranty of fitness for a particular purpose. The software
% provided hereunder is on an "as is" basis, and the Author and the
% UCF has no obligation to provide maintenance, support, updates,
% enhancements, or modifications.
%
% RNNSIM is available for any platform (UNIX, PCWIN, MACHITOCH).
% It runs under MATLAB ver. 5.0 or highrer.
%
% User feedback, bugs, or software and manual suggestions can
% be sent via electronic mail to : ahossam@cs.ucf.edu
function fig = demo_nn()
% This is the machine-generated representation of a Handle Graphics object
% and its children. Note that handle values may change when these objects
% are re-created. This may cause problems with any callbacks written to
% depend on the value of the handle at the time the object was saved.
%
% To reopen this object, just type the name of the M-file at the MATLAB
% prompt. The M-file and its associated MAT-file must be on your path.
load demo_nn
h0 = figure('Units','normalized', ...
'Color',[0.8 0.8 0.8], ...
'Colormap',mat0, ...
'MenuBar','none', ...
'Name','Demo', ...
'NumberTitle','off', ...
'PointerShapeCData',mat1, ...
'Position',[0.35875 0.2333333333333333 0.50375 0.6433333333333334], ...
'Resize','off', ...
'Tag','DemoFig');
h1 = uicontrol('Parent',h0, ...
'Units','normalized', ...
'Callback','close(gcbf)', ...
'ListboxTop',0, ...
'Position',[0.8610421836228288 0.02072538860103627 0.08188585607940446 0.05958549222797927], ...
'String','OK', ...
'Tag','PB1');
h1 = uicontrol('Parent',h0, ...
'Units','normalized', ...
'BackgroundColor',[0.752941176470588 0.752941176470588 0.752941176470588], ...
'ListboxTop',0, ...
'Position',[0.007444168734491315 0.09326424870466321 0.9776674937965261 0.8937823834196891], ...
'Style','text', ...
'Tag','DemoFigStT1');
if nargout > 0, fig = h0; end
DemoFigHndl = findobj('Tag','DemoFig');
DemoFigStT1Hndl = findobj(DemoFigHndl,'Tag','DemoFigStT1');
List = helpinfo;
set(DemoFigStT1Hndl,'Fontsize',12);
set(DemoFigStT1Hndl,'HorizontalAlignment','left');
set(DemoFigStT1Hndl,'String',char(List(3).Help));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -