<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" id="owaParaStyle"></style>
</head>
<body fpstyle="1" ocsi="0">
<div style="direction: ltr;font-family: Tahoma;color: #000000;font-size: 10pt;">Dear all,
<div><br>
</div>
<div>I want to do SAM beamformer source localization on single trial EEG data. I would like to normalize the leadfields to correct for depth, like mentioned in the lmcv beamformer tutorial: (http://www.fieldtriptoolbox.org/tutorial/beamformer_lcmv)</div>
<div><font face="Courier New"><br>
</font></div>
<div>
<div><font face="Courier New">cfg                  = [];</font></div>
<div><font face="Courier New">cfg.elec             = hdr.elec;  % electrode distances</font></div>
<div><font face="Courier New">cfg.headmodel        = vol;   % volume conduction headmodel</font></div>
<div><font face="Courier New">cfg.grid             = grid;  % normalized grid positions</font></div>
<div><font face="Courier New">cfg.channel          = {'EEG'};</font></div>
<div><font face="Courier New">cfg.normalize        = 'yes'; % to remove depth bias (Q in eq. 27 of van Veen et al, 1997). </font></div>
<div><font face="Courier New">lf                   = ft_prepare_leadfield(cfg);</font></div>
<div><br>
</div>
<div>However when I look what happens with cfg.normalize='yes', the following script is used in ft_compute_leadfield, from line 570:</div>
<div><br>
</div>
<div>
<div><font face="Courier New">  case 'yes'</font></div>
<div><font face="Courier New">    for ii=1:Ndipoles</font></div>
<div><font face="Courier New">      tmplf = lf(:, (3*ii-2):(3*ii));</font></div>
<div><font face="Courier New">      if normalizeparam==0.5</font></div>
<div><font face="Courier New">        % normalize the leadfield by the Frobenius norm of the matrix</font></div>
<div><font face="Courier New">        % this is the same as below in case normalizeparam is 0.5</font></div>
<div><font face="Courier New">        nrm = norm(tmplf, 'fro');</font></div>
<div><font face="Courier New">      else</font></div>
<div><font face="Courier New">        % normalize the leadfield by sum of squares of the elements of the leadfield matrix to the power "normalizeparam"</font></div>
<div><font face="Courier New">        % this is the same as the Frobenius norm if normalizeparam is 0.5</font></div>
<div><font face="Courier New">        nrm = sum(tmplf(:).^2)^normalizeparam;</font></div>
<div><font face="Courier New">      end</font></div>
<div><font face="Courier New">      if nrm>0</font></div>
<div><font face="Courier New">        tmplf = tmplf ./ nrm;</font></div>
<div><font face="Courier New">      end</font></div>
<div><font face="Courier New">      lf(:, (3*ii-2):(3*ii)) = tmplf;</font></div>
<div><font face="Courier New">    end</font></div>
</div>
</div>
<div><br>
</div>
<div>This seems to me as independent of the dipole location, and does not use an estimate of the noise spectrum as in Eq 27 of van Veen et al 1997. </div>
<div>DICS beamformer has the option to estimate the noise spectrum with 'projectnoise', but SAM beamformer does not have that option. SAM does something with noise and a lambda, which is noise regularization I guess (beamformer_sam from line 102). <span style="font-size: 13.3333px;">I
 use Fieldtrip 20170212.</span></div>
<div><br>
</div>
<div>My main question: how do I correct the leadfields for depth bias?</div>
<div><br>
</div>
<div>Thanks in advance,</div>
<div>Nicole</div>
</div>
<hr>

<p><font size="-2" face="arial" color="black"><i>
De informatie opgenomen in dit bericht kan vertrouwelijk zijn en is
uitsluitend bestemd voor de geadresseerde. Indien u dit bericht onterecht
ontvangt, wordt u verzocht de inhoud niet te gebruiken en de afzender direct
te informeren door het bericht te retourneren. Het Universitair Medisch
Centrum Utrecht is een publiekrechtelijke rechtspersoon in de zin van de W.H.W.
(Wet Hoger Onderwijs en Wetenschappelijk Onderzoek) en staat geregistreerd bij
de Kamer van Koophandel voor Midden-Nederland onder nr. 30244197.
</i></font></p>

<p><font size="-2" face="arial"  color="green"><i>
Denk s.v.p aan het milieu voor u deze e-mail afdrukt.
</i></font></p>

<hr>

<p><font size="-2"  face="arial" color="black"><i>
This message may contain confidential information and is intended
exclusively for the addressee. If you receive this message
unintentionally, please do not use the contents but notify the sender
immediately by return e-mail. University Medical Center Utrecht is a legal
person by public law and is registered at the Chamber of Commerce for
Midden-Nederland under no. 30244197.
</i></font></p>

<p><font size="-2"  face="arial" color="green"><i>
Please consider the environment before printing this e-mail.
</i></font></p>
</body>
</html>