[proj,nproj] = mne_make_projector_info(info) Make an SSP operator using the meas info
0001 function [proj,nproj] = mne_make_projector_info(info) 0002 % 0003 % [proj,nproj] = mne_make_projector_info(info) 0004 % 0005 % Make an SSP operator using the meas info 0006 % 0007 0008 % 0009 % Author : Matti Hamalainen, MGH Martinos Center 0010 % License : BSD 3-clause 0011 % 0012 % 0013 % Revision 1.1 2006/05/05 10:52:33 msh 0014 % Added missing file. 0015 % 0016 % 0017 0018 me='MNE:mne_make_projector_info'; 0019 0020 if nargin ~= 1 0021 error(me,'Incorrect number of arguments'); 0022 end 0023 0024 [ proj, nproj ] = mne_make_projector(info.projs,info.ch_names,info.bads); 0025 0026 return; 0027 0028 end