


PRT_UI_RESULTS_HELP MATLAB code for prt_ui_results_help.fig
PRT_UI_RESULTS_HELP, by itself, creates a new PRT_UI_RESULTS_HELP or
raises the existing singleton*.
H = PRT_UI_RESULTS_HELP returns the handle to a new PRT_UI_RESULTS_HELP
or the handle to the existing singleton*.
PRT_UI_RESULTS_HELP('CALLBACK',hObject,eventData,handles,...) calls the
local function named CALLBACK in PRT_UI_RESULTS_HELP.M with the given
input arguments.
PRT_UI_RESULTS_HELP('Property','Value',...) creates a new
PRT_UI_RESULTS_HELP or raises the existing singleton*. Starting from the
left, property value pairs are applied to the GUI before
prt_ui_results_help_OpeningFcn gets called. An unrecognized property
name or invalid value makes property application stop. All inputs are
passed to prt_ui_results_help_OpeningFcn via varargin.
*See GUI Options on GUIDE's Tools menu. Choose "GUI allows only one
instance to run (singleton)".
See also: GUIDE, GUIDATA, GUIHANDLES
__________________________________________________________________________
Copyright (C) 2011 Machine Learning & Neuroimaging Laboratory


0001 function varargout = prt_ui_results_help(varargin) 0002 % PRT_UI_RESULTS_HELP MATLAB code for prt_ui_results_help.fig 0003 % 0004 % PRT_UI_RESULTS_HELP, by itself, creates a new PRT_UI_RESULTS_HELP or 0005 % raises the existing singleton*. 0006 % 0007 % H = PRT_UI_RESULTS_HELP returns the handle to a new PRT_UI_RESULTS_HELP 0008 % or the handle to the existing singleton*. 0009 % 0010 % PRT_UI_RESULTS_HELP('CALLBACK',hObject,eventData,handles,...) calls the 0011 % local function named CALLBACK in PRT_UI_RESULTS_HELP.M with the given 0012 % input arguments. 0013 % 0014 % PRT_UI_RESULTS_HELP('Property','Value',...) creates a new 0015 % PRT_UI_RESULTS_HELP or raises the existing singleton*. Starting from the 0016 % left, property value pairs are applied to the GUI before 0017 % prt_ui_results_help_OpeningFcn gets called. An unrecognized property 0018 % name or invalid value makes property application stop. All inputs are 0019 % passed to prt_ui_results_help_OpeningFcn via varargin. 0020 % 0021 % *See GUI Options on GUIDE's Tools menu. Choose "GUI allows only one 0022 % instance to run (singleton)". 0023 % 0024 % See also: GUIDE, GUIDATA, GUIHANDLES 0025 %__________________________________________________________________________ 0026 % Copyright (C) 2011 Machine Learning & Neuroimaging Laboratory 0027 0028 % Written by M. J. Rosa 0029 % $Id$ 0030 0031 % Edit the above text to modify the response to help prt_ui_results_help 0032 0033 % Last Modified by GUIDE v2.5 13-Mar-2012 10:41:14 0034 0035 % Begin initialization code - DO NOT EDIT 0036 gui_Singleton = 1; 0037 gui_State = struct('gui_Name', mfilename, ... 0038 'gui_Singleton', gui_Singleton, ... 0039 'gui_OpeningFcn', @prt_ui_results_help_OpeningFcn, ... 0040 'gui_OutputFcn', @prt_ui_results_help_OutputFcn, ... 0041 'gui_LayoutFcn', [] , ... 0042 'gui_Callback', []); 0043 if nargin && ischar(varargin{1}) 0044 gui_State.gui_Callback = str2func(varargin{1}); 0045 end 0046 0047 if nargout 0048 [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:}); 0049 else 0050 gui_mainfcn(gui_State, varargin{:}); 0051 end 0052 % End initialization code - DO NOT EDIT 0053 0054 0055 % --- Executes just before prt_ui_results_help is made visible. 0056 function prt_ui_results_help_OpeningFcn(hObject, eventdata, handles, varargin) 0057 % This function has no output args, see OutputFcn. 0058 % hObject handle to figure 0059 % eventdata reserved - to be defined in a future version of MATLAB 0060 % handles structure with handles and user data (see GUIDATA) 0061 % varargin command line arguments to prt_ui_results_help (see VARARGIN) 0062 0063 % Choose default command line output for prt_ui_results_help 0064 handles.output = hObject; 0065 0066 % Update handles structure 0067 guidata(hObject, handles); 0068 0069 % UIWAIT makes prt_ui_results_help wait for user response (see UIRESUME) 0070 % uiwait(handles.figure1); 0071 0072 0073 % --- Outputs from this function are returned to the command line. 0074 function varargout = prt_ui_results_help_OutputFcn(hObject, eventdata, handles) 0075 % varargout cell array for returning output args (see VARARGOUT); 0076 % hObject handle to figure 0077 % eventdata reserved - to be defined in a future version of MATLAB 0078 % handles structure with handles and user data (see GUIDATA) 0079 0080 % Get default command line output from handles structure 0081 varargout{1} = handles.output;