Switch to unified view

a b/functions/adminfunc/abouteeglab.m
1
% script for compiled EEGLAB version about button
2
3
tmptmptext = strvcat('                                  EEGLAB (compiled version)', ...
4
                  '       ', ...
5
                  '       ', ...
6
                  'The EEGLAB electrophysiological data analysis software is an open source research', ...
7
                  'project developed at the Swartz Center for Computational Neuroscience, Institute', ...
8
                  'for Neural Computation at the University of California San Diego in collaboration', ...
9
                  'with The Salk Institute (La Jolla) and the CERCO laboratory (Toulouse) where part', ...
10
                  'of the core code was developed.', ...
11
                  ' ', ...
12
                  'EEGLAB incorporates several third party suites of functions, Fieldtrip for source ', ...
13
                  'localization, and BIOSIG for binary file import. A list of plugins is also included', ...
14
                  'in this compiled release. See https://sccn.ucsd.edu/eeglab/plugin_uploader/plugin_list_all.php', ...
15
                  'for more information.', ...
16
                  ' ', ...
17
                  'The EEGLAB software, its source code, and the source code of all additional third', ... 
18
                  'party functions it includes is protected by the BSD open source license.', ...
19
                  ' ');
20
21
warndlg2(tmptmptext);
22
clear tmptmptext;