|
a |
|
b/functions/adminfunc/eeg_helphelp.m |
|
|
1 |
% EEG_HELPHELP - How to use EEGLAB help. |
|
|
2 |
% |
|
|
3 |
% EEGLAB MENU: |
|
|
4 |
% Each EEGLAB menu item calls a Matlab function from the commandline. If this |
|
|
5 |
% function pops up a graphic interface window, the figure title usually |
|
|
6 |
% contains the name of the function that the window will call. EEGLAB help |
|
|
7 |
% files are thus simply the collection of all the help files of the called |
|
|
8 |
% functions. |
|
|
9 |
% |
|
|
10 |
% FUNCTION CALL CONVENTION: |
|
|
11 |
% When the EEGLAB menu calls a function, it takes the EEG dataset as |
|
|
12 |
% an argument, sometimes with additional parameters. The function then |
|
|
13 |
% pops-up an interactive window asking for additional parameter values. |
|
|
14 |
% The advantage of this process is that the same function can be called in |
|
|
15 |
% two ways, either in interactive (pop_) mode or directly from the commandline. |
|
|
16 |
% This trick allows EEGLAB to build a history of the commands run under an |
|
|
17 |
% EEGLAB session. (See the EEGH function for details). The command history allows |
|
|
18 |
% users to build their own EEGLAB macros by copying and pasting commands from |
|
|
19 |
% the EEGLAB history (using EEGH and POP_SAVEH) into new Matlab script files. |
|
|
20 |
% |
|
|
21 |
% EEGLAB HELP WINDOWS: |
|
|
22 |
% The help message of any function may be called from from the EEGLAB menu |
|
|
23 |
% by opening the 'Help > EEGLAB' menu window. The help message of each function |
|
|
24 |
% is then displayed. Note that many EEGLAB functions do not actually process |
|
|
25 |
% data (in particular, the 'pop_' functions). To understand their use, look |
|
|
26 |
% at the help message for the (non-pop) function they call which actually |
|
|
27 |
% processes the data. For example, the menu item % "Plot > Channel ERP image" |
|
|
28 |
% calls the function 'POP_ERPIMAGE'. This function in turn serves as a |
|
|
29 |
% graphic user interface for the computing and plotting function 'ERPIMAGE'. |
|
|
30 |
|
|
|
31 |
% Copyright (C) 2001 Arnaud Delorme, Salk Institute, arno@salk.edu |
|
|
32 |
% |
|
|
33 |
% This file is part of EEGLAB, see http://www.eeglab.org |
|
|
34 |
% for the documentation and details. |
|
|
35 |
% |
|
|
36 |
% Redistribution and use in source and binary forms, with or without |
|
|
37 |
% modification, are permitted provided that the following conditions are met: |
|
|
38 |
% |
|
|
39 |
% 1. Redistributions of source code must retain the above copyright notice, |
|
|
40 |
% this list of conditions and the following disclaimer. |
|
|
41 |
% |
|
|
42 |
% 2. Redistributions in binary form must reproduce the above copyright notice, |
|
|
43 |
% this list of conditions and the following disclaimer in the documentation |
|
|
44 |
% and/or other materials provided with the distribution. |
|
|
45 |
% |
|
|
46 |
% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
|
|
47 |
% AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
|
|
48 |
% IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
|
|
49 |
% ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
|
|
50 |
% LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
|
|
51 |
% CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
|
|
52 |
% SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
|
|
53 |
% INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
|
|
54 |
% CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
|
|
55 |
% ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
|
|
56 |
% THE POSSIBILITY OF SUCH DAMAGE. |
|
|
57 |
|
|
|
58 |
help eeg_helphelp |