TEAP (Toolbox for Emotion Analysis using Physiological Signals) doc
eeg_options.m
Go to the documentation of this file.
1 % eeg_options() - eeglab option script
2 %
3 % Note: DO NOT EDIT, instead use pop_editoptions() or the menu
4 % /File/Maximize memory in EEGLAB gui
5 
6 % STUDY options (set these checkboxes if you intend to work with studies)
7 option_storedisk = 0 ; % If set, keep at most one dataset in memory. This allows processing hundreds of datasets within studies.
8 option_savetwofiles = 1 ; % If set, save not one but two files for each dataset (header and data). This allows faster data loading in studies.
9 option_saveica = 0 ; % If set, write ICA activations to disk. This speeds up loading ICA components when dealing with studies.
10 % Memory options
11 option_single = 0 ; % If set, use single precision under Matlab 7.x. This saves RAM but can lead to rare numerical imprecisions.
12 option_memmapdata = 0 ; % If set, use memory mapped array under Matlab 7.x. This may slow down some computation.
13 % ICA options
14 option_computeica = 0 ; % If set, precompute ICA activations. This requires more RAM but allows faster plotting of component activations.
15 option_scaleicarms = 1 ; % If set, scale ICA component activities to RMS (Root Mean Square) in microvolt (recommended).
16 % Folder options
17 option_rememberfolder = 1 ; % If set, when browsing to open a new dataset assume the folder/directory of previous dataset.