| POP_LOADSET | Load an EEG dataset. If no arguments, pop up an input window. |
| Usage: | >> EEGOUT = pop_loadset; % pop up window to input arguments >> EEGOUT = pop_loadset( 'key1', 'val1', 'key2', 'val2', ...); >> EEGOUT = pop_loadset( filename, filepath); % old calling format |
| Optional inputs: | |
'filename' |
[string] dataset filename. Default pops up a graphical interface to browse for a data file. |
'filepath' |
[string] dataset filepath. Default is current folder. |
'loadmode' |
['all', 'info', integer] 'all' -> load the data and the dataset structure. 'info' -> load only the dataset structure but not the actual data. [integer] -> load only a specific channel. This is efficient when data is stored in a separate '.dat' file in which individual channels may be loaded independently of each other. {default: 'all'} |
'eeg' |
[EEG structure] reload current dataset |
| Note: | Multiple filenames and filepaths may be specified. If more than one, the output EEG variable will be an array of EEG structures. Output |
EEGOUT |
EEG dataset structure or array of structures |
| Author: | Arnaud Delorme, CNL / Salk Institute, 2001; SCCN/INC/UCSD, 2002- |
| See also: | eeglab(), pop_saveset() |