⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 eeg_retrieve.m

📁 含有多种ICA算法的eeglab工具箱
💻 M
字号:
% eeg_retrieve() - Retrieve an EEG dataset from the variable%                  containing all datasets (standard:ALLEEG).%% Usage: >> EEG = eeg_retrieve( ALLEEG, index );%% Inputs:%   ALLEEG     - variable containing all datasets%   index      - index of the dataset to retrieve%% Outputs:%   EEG        - output dataset. The global variable EEG is also updated %% Note: at this point the function only performs >> EEG = ALLEEG(index);%% Author: Arnaud Delorme, CNL / Salk Institute, 2001%% See also: eeg_store(), eeglab()%123456789012345678901234567890123456789012345678901234567890123456789012 % Copyright (C) 2001 Arnaud Delorme, Salk Institute, arno@salk.edu%% This program is free software; you can redistribute it and/or modify% it under the terms of the GNU General Public License as published by% the Free Software Foundation; either version 2 of the License, or% (at your option) any later version.%% This program is distributed in the hope that it will be useful,% but WITHOUT ANY WARRANTY; without even the implied warranty of% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the% GNU General Public License for more details.%% You should have received a copy of the GNU General Public License% along with this program; if not, write to the Free Software% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA% $Log: eeg_retrieve.m,v $% Revision 1.4  2002/08/11 17:32:00  arno% header%% Revision 1.3  2002/07/22 21:06:52  arno% nothing%% Revision 1.2  2002/04/23 23:48:21  arno% standalone version%% Revision 1.1  2002/04/18 19:49:29  arno% Initial revision%% Revision 1.1  2002/04/05 17:46:04  jorn% Initial revision%% 01-25-02 reformated help & license -ad function EEG = eeg_retrieve( ALLEEG, retrieveSetIndex);if nargin < 2	help eeg_retrieve;	return;end;	try	EEG = ALLEEG(retrieveSetIndex);catch	fprintf('Warning: cannot retrieve dataset with index %d\n', retrieveSetIndex); 	return;end;return;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -