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

📄 help_nn.m

📁 这是个神经网络工具箱的一点MATALAB 程序
💻 M
字号:
%   File Name      : help_nn.m
%   Purpose        : Drawing the Help window 
%   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 help_nn()
% This is the machine-generated representation of a MATLAB object
% and its children.  Note that handle values may change when these
% objects are re-created. This may cause problems with some callbacks.
% The command syntax may be supported in the future, but is currently 
% incomplete and subject to change.
%
% To re-open this system, just type the name of the m-file at the MATLAB
% prompt. The M-file and its associtated MAT-file must be on your path.

load help_nn                           

a = figure('Units','normalized', ...
	'Color',[0.8 0.8 0.8], ...
	'Colormap',mat0, ...
	'MenuBar','none', ...
	'Name','Help', ...
	'NumberTitle','off', ...
	'PointerShapeCData',mat1, ...
	'Position',[0.120125 0.2266667 0.84 0.703333], ...
	'Resize','off', ...
	'Tag','HelpFig');
b = uicontrol('Parent',a, ...
	'Units','normalized', ...
	'BackgroundColor',[0.752941 0.752941 0.752941], ...
	'Position',[-0.00535714 -0.0118483 1.00714 1.00711], ...
	'Style','frame', ...
	'Tag','Frame1');
b = uicontrol('Parent',a, ...
	'Units','normalized', ...
	'BackgroundColor',[1 1 1], ...
	'Callback','help_nn_excute HelpFigLST1', ...
	'Position',[0.015 0.187204 0.315 0.770142], ...
	'String',' ', ...
	'Style','listbox', ...
	'Tag','HelpFigLST1', ...
	'Value',1);
b = uicontrol('Parent',a, ...
	'Units','normalized', ...
	'BackgroundColor',[1 1 1], ...
	'Callback','help_nn_excute HelpFigLST3', ...
	'Position',[0.339286 0.014218 0.651786 0.945498], ...
	'String',' ', ...
	'Style','listbox', ...
	'Tag','HelpFigLST2', ...
	'Value',1);
b = uicontrol('Parent',a, ...
	'Units','normalized', ...
	'Callback','help_nn_excute HelpFigQuitPB', ...
	'Position',[0.11 0.0473934 0.106667 0.0616114], ...
	'String','Quit', ...
	'Tag','HelpFigQuitPB');


global HelpFigHndl HelpFigLST1Hndl HelpFigLST2Hndl
HelpFigHndl = findobj('Tag','HelpFig');
HelpFigLST1Hndl = findobj(HelpFigHndl,'Tag','HelpFigLST1');
HelpFigLST2Hndl = findobj(HelpFigHndl,'Tag','HelpFigLST2');
HelpFigQuitPBHndl = findobj(HelpFigHndl,'Tag','HelpFigQuitPB');
List = helpinfo;
set(HelpFigLST1Hndl,'Fontsize',12);
set(HelpFigLST1Hndl,'String',char(List.Name));
val =   get(HelpFigLST1Hndl,'Value');
set(HelpFigLST2Hndl,'Fontsize',12); 
set(HelpFigLST2Hndl,'String',char(List(1).Help));   

⌨️ 快捷键说明

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