<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body>
<div dir="ltr">Hello, 
<div><br>
</div>
<div>I want to calculate the covariance of the data I provide. In the function ft_timelockanalysis there is a portion where the covariance is being normalised over all trials by the total number of samples in all trials. </div>
<div><br>
</div>
<div><br>
</div>
<div>
<div>% normalize the covariance over all trials by the total number of samples in all trials</div>
<div>if strcmp(cfg.covariance, 'yes')</div>
<div>  if strcmp(cfg.keeptrials,'yes')</div>
<div>    for i=1:ntrial</div>
<div>      if strcmp(cfg.removemean, 'yes')</div>
<div>        covsig(i,:,:) = covsig(i,:,:) / (numcovsigsamples(i)-1);</div>
<div>      else<br>
</div>
<div>        covsig(i,:,:) = covsig(i,:,:) / numcovsigsamples(i);</div>
<div>      end<br>
</div>
<div>    end</div>
<div>  else</div>
<div>    if strcmp(cfg.removemean, 'yes')</div>
<div>      covsig = squeeze(nansum(covsig, 1)) / (sum(numcovsigsamples)-ntrial);</div>
<div>    else<br>
</div>
<div>      covsig = squeeze(nansum(covsig, 1)) / sum(numcovsigsamples);</div>
<div><br>
</div>
<div>    end</div>
<div>  end</div>
<div>end</div>
</div>
<div><br>
</div>
<div>Please note that the cfg.removemean was selected as yes. </div>
<div><br>
</div>
<div>Can someone please explain what is the final data present in my covariance matrix? <br>
<br>
<br>
<br>
<div class=""><font color="#999999" class="">Sent with <a href="https://mailtrack.io/install?source=signature&lang=en&referral=s.borbaruah@student.utwente.nl&idSignature=22" class="">
MailTrack</a></font></div>
</div>
<img width="0" height="0" class="mailtrack-img" src="https://mailtrack.io/trace/mail/6051c1cbfd04bda41343fdf3fd899e094181e326741513.png"></div>
</body>
</html>