forked from fieldtrip/fieldtrip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContents.m
123 lines (121 loc) · 4.38 KB
/
Contents.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
% FieldTrip is the Matlab toolbox for MEG and EEG analysis that is being developed at
% the Centre for Cognitive Neuroimaging of the Donders Institute for Brain, Cognition
% and Behaviour together with collaborating institutes. The FieldTrip software is
% released as open source under the GNU general public license.
%
% The FieldTrip toolbox includes algorithms for simple and advanced analysis of MEG and
% EEG data, such as time-frequency analysis, source reconstruction using dipoles,
% distributed sources and beamformers and non-parametric statistical testing. It
% supports the data formats of all major MEG systems (CTF, Neuromag, BTi) and of the
% most popular EEG systems, and new formats can be added easily. FieldTrip contains
% high-level functions that you can use to construct your own analysis protocol in
% Matlab. Furthermore, it easily allows developers to incorporate low-level algorithms
% for new EEG/MEG analysis methods.
%
% The FieldTrip software is free but copyrighted software, distributed under the terms
% of the GNU General Public Licence as published by the Free Software Foundation (either
% version 2, or at your option any later version). See the file COPYING for more
% details.
%
% The functions in this toolbox are copyrighted by their respective authors:
% Robert Oostenveld, DCCN, FCDC, SMI, MBFYS
% Jan-Mathijs Schoffelen, CCNi, FCDC
% Pascal Fries, FCDC
% Markus Bauer, FCDC
% Ole Jensen, FCDC
% Markus Siegel, FCDC, UKE
% Jens Schwarzbach, FCDC
% Eric Maris, DCC, FCDC
% Ingrid Nieuwenhuis, DCCN, FCDC
% Saskia Haegens, DCCN, FCDC
% and others ...
%
% Copyrights (C) 2008-2012, Donders Institute for Brain, Cognition and Behaviour, Radboud University Nijmegen, The Netherlands (DCCN, DCC, DCN)
% Copyrights (C) 2008-2010, Centre for Cognitive Neuroimaging, Glasgow, United Kingdom (CCNi)
% Copyrights (C) 2003-2008, F.C. Donders Centre, Radboud University Nijmegen, The Netherlands (FCDC)
% Copyrights (C) 2004-2007, Nijmegen Institute for Cognition and Information, Radboud University Nijmegen, The Netherlands (NICI)
% Copyrights (C) 2004-2005, Universitatsklinikum Hamburg-Eppendorf, Germany (UKE)
% Copyrights (C) 2003-2004, Center for Sensory Motor Interaction, University Aalborg, Denmark (SMI)
% Copyrights (C) 1999-2003, Department of Medical Physics, Radboud University Nijmegen, The Netherlands (MBFYS)
%
% The FieldTrip toolbox depend on functions from other toolboxes to do a large part of
% the actual work, such as reading data from binary files and forward and inverse
% modelling of the EEG/MEG. These low-level functions are contained in the private
% subdirectory. These other toolboxes on which the framework depends are copyrighted by
% their respective authors, see each individual matlab file for the details.
%
% Unauthorised copying and distribution of functions that are not explicitely covered by
% the GPL is not allowed!
%
% Below is an overview of the most important FieldTrip functions, sorted by category.
% You can get more details on a function by typing "help functionname" in Matlab.
%
% Preprocessing and reading data
% ft_definetrial
% ft_rejectartifact
% ft_rejectvisual
% ft_preprocessing
% ft_appenddata
% ft_resampledata
% ft_channelrepair
% ft_recodeevent
% ft_redefinetrial
% ft_databrowser
% ft_read_header
% ft_read_data
% ft_read_event
% ft_read_mri
%
% Event-Related Fields or Potentials
% ft_timelockanalysis
% ft_timelockgrandaverage
% ft_timelockstatistics
% ft_singleplotER
% ft_topoplotER
% ft_multiplotER
%
% Frequency and Time-Frequency analysis
% ft_freqanalysis
% ft_freqgrandaverage
% ft_freqdescriptives
% ft_freqstatistics
% ft_singleplotTFR
% ft_topoplotTFR
% ft_multiplotTFR
%
% Source analysis
% ft_dipolefitting
% ft_dipolesimulation
% ft_sourceanalysis
% ft_sourcegrandaverage
% ft_sourcedescriptives
% ft_sourcestatistics
% ft_sourceplot
% ft_sourceinterpolate
% ft_prepare_localspheres
% ft_prepare_singleshell
% ft_prepare_bemmodel
% ft_prepare_leadfield
% ft_prepare_atlas
% ft_volumelookup
%
% Statistical analysis
% ft_timelockstatistics
% ft_freqstatistics
% ft_sourcestatistics
%
% Plotting and display of data
% ft_prepare_layout
% ft_layoutplot
% ft_singleplotER
% ft_multiplotER
% ft_topoplotER
% ft_singleplotTFR
% ft_multiplotTFR
% ft_topoplotTFR
% ft_topoplotCC
% ft_multiplotCC
% ft_sourceplot
% ft_clusterplot
% $Id$
% $Rev$