<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">
Hi Martin,<br class="">
<div>
<div style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">
<div class=""><br class="">
</div>
<div class="">The short answer to your question “does mtmconvol remove 1/f?” is “no”, unless you specify cfg.polyremoval = 1. And even then it is not removing 1/f, but it removes the linear trend from the data, which indeed might tamper with the overall spectral
 shape, depending on the data.</div>
<div class=""><br class="">
</div>
<div class="">Looking at your code (trying to resist the urge ask back a few questions, e.g. “what’s the question behind your question?” , “why do you want to use superlets?”, “why don’t you just use ‘mtmfft’ if you want a time unresolved spectrum?” “etc?”),
 and dismissing a few suboptimalities in the definition of the options, and guessing a bit what you try to compare, I wrote some code myself:</div>
<div class=""><br class="">
</div>
<div class="">
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
clear <span style="color: #aa04f9" class="">all</span>;</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
data.time{1} = (0:99999)./1000;</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
data.label{1} = <span style="color: #aa04f9" class="">'chan01'</span>;</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
data.trial{1} = 1;</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
<span style="color: #0e00ff" class="">for</span> k = 2:100000</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
  data.trial{1}(k)=randn(1)+1.*data.trial{1}(k-1);</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; color: rgb(14, 0, 255);" class="">
end</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; color: rgb(14, 0, 255); min-height: 12px;" class="">
 <br class="webkit-block-placeholder">
</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; color: rgb(14, 0, 255); min-height: 12px;" class="">
 <br class="webkit-block-placeholder">
</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg        = [];</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg.length = 10;</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
data       = ft_redefinetrial(cfg, data);</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
data.time(2:end) = data.time(1);</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; min-height: 12px;" class="">
 <br class="webkit-block-placeholder">
</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg           = [];</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg.method    = <span style="color: #aa04f9" class="">'mtmfft'</span>;</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg.tapsmofrq = 1;</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg.foilim    = [4 100];</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
freqmtmfft    = ft_freqanalysis(cfg, data);</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; min-height: 12px;" class="">
 <br class="webkit-block-placeholder">
</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; color: rgb(2, 128, 9);" class="">
% fixed window per frequency</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg           = [];</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg.method    = <span style="color: #aa04f9" class="">'mtmconvol'</span>;</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg.foi       = 4:0.5:100;</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg.t_ftimwin = ones(1,numel(cfg.foi)).*2;</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg.tapsmofrq = ones(1,numel(cfg.foi));</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg.toi       = 0:0.1:10;</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
freqmtmconvol1 = ft_freqanalysis(cfg, data);</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg.tapsmofrq(:) = 2;</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
freqmtmconvol1b = ft_freqanalysis(cfg, data);</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; min-height: 12px;" class="">
 <br class="webkit-block-placeholder">
</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; color: rgb(2, 128, 9);" class="">
% window changes per frequency -> this leads to a per-frequency different</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; color: rgb(2, 128, 9);" class="">
% intrinsic spectral resolution, which might complicate across frequency</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; color: rgb(2, 128, 9);" class="">
% bin direct comparisons of magnitude because each bin actually represents</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; color: rgb(2, 128, 9);" class="">
% a surface with a varying width</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg.t_ftimwin = 4./cfg.foi;</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg.tapsmofrq = cfg.foi.*0.5;</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
freqmtmconvol2 = ft_freqanalysis(cfg, data);</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; min-height: 12px;" class="">
 <br class="webkit-block-placeholder">
</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; color: rgb(2, 128, 9);" class="">
% wavelet</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg = removefields(cfg, {<span style="color: #aa04f9" class="">'tapsmofrq'</span>
<span style="color: #aa04f9" class="">'t_ftimwin'</span>});</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg.method = <span style="color: #aa04f9" class="">'wavelet'</span>;</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
freqwavelet = ft_freqanalysis(cfg, data);</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; min-height: 12px;" class="">
 <br class="webkit-block-placeholder">
</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; color: rgb(2, 128, 9);" class="">
% superlet</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg.method  = <span style="color: #aa04f9" class="">'superlet'</span>;</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg.combine = <span style="color: #aa04f9" class="">'additive'</span>; </div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
cfg.order   = round(linspace(1,40,numel(cfg.foi)));</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
freqsuperlet = ft_freqanalysis(cfg, data);</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; min-height: 12px;" class="">
 <br class="webkit-block-placeholder">
</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
figure;</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
subplot(221); plot(freqmtmfft.freq, log10(freqmtmfft.powspctrm));</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
subplot(222); plot(freqmtmconvol1.freq,log10(squeeze(nanmean(freqmtmconvol1.powspctrm,3))));</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
hold <span style="color: #aa04f9" class="">on</span>; plot(freqmtmconvol1.freq,log10(squeeze(nanmean(freqmtmconvol1b.powspctrm,3))));</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
subplot(223); plot(freqmtmconvol2.freq,log10(squeeze(nanmean(freqmtmconvol2.powspctrm,3))));</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
subplot(224); plot(freqwavelet.freq,log10(squeeze(nanmean(freqwavelet.powspctrm,3))));</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier;" class="">
hold <span style="color: #aa04f9" class="">on</span>; plot(freqsuperlet.freq,log10(squeeze(nanmean(freqsuperlet.powspctrm,3))));</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; min-height: 12px;" class="">
<br class="">
</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; min-height: 12px;" class="">
<br class="">
</div>
<div style="margin: 0px; font-stretch: normal; font-size: 10px; line-height: normal; font-family: Courier; min-height: 12px;" class="">
 <br class="webkit-block-placeholder">
</div>
<div style="margin: 0px; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier; min-height: 14px;" class="">
<br class="">
</div>
<div class="">The resulting figure does not show anything too much out of order when comparing the different spectral analysis methods, apart from a difference in scaling, and a zigzag in the application of ‘mtmconvol’, but only when a frequency specific time
 window is used. In all reconstructions, the 1/f is clearly present.</div>
<div class=""><br class="">
</div>
<div class=""><img apple-inline="yes" id="AA636FB7-84B2-40FF-B05C-4CA76584ECAE" class="" src="cid:CAD8ED7C-D7DE-4E07-A429-BC536CFD319A"></div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
<div class="">So my first thought was: “shi*** data from Stockholm”. </div>
<div class=""><br class="">
</div>
<div class="">But only then I saw cfg.polyremoval = 1….</div>
<div class=""><br class="">
</div>
<div class="">If you specify this value, you actually do something that is equivalent to a ‘detrend’, which removes the linear trend from each of the epochs. Repeating the exercise above with cfg.polyremoval=1 everywhere (exercise to the reader) will not yield
 qualitatively very different images using the dummy data I generated. Of note, however, will be the observation that the polyremoval does have a quantitative effect on the ‘mtm<method>’ methods, but not on the ‘wavelet/superlet’. </div>
<div class=""><br class="">
</div>
<div class="">Back to Stockholm...</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
<div class="">Best wishes,</div>
<div class="">Jan-Mathijs</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
<div class="">On 7 Dec 2022, at 14:26, Martin Schaefer via fieldtrip <<a href="mailto:fieldtrip@science.ru.nl" class="">fieldtrip@science.ru.nl</a>> wrote:<br class="">
<blockquote type="cite" class=""><br class="Apple-interchange-newline">
<div class="">
<div class="elementToProof" style="font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
Dear fieldtrip community,</div>
<div class="elementToProof" style="font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
<br class="">
</div>
<div class="elementToProof" style="font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
I'm getting strange results when I compute the powerspectrum of my data with the mtmconvol method.</div>
<div class="elementToProof" style="font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
When I plot my results over time and frequencies, I get most power in the higher frequencies, compared to the wavelet, tfr, or superlet methods where I get most power in the lower frequencies.</div>
<div class="elementToProof" style="font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
When I look at just the power over frequencies, it looks like mtmconvol removes 1/f. Is this indeed the case? If so, why does it do this?</div>
<div class="elementToProof" style="font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
I attached plots of the powerspectrum for the mtmconvol method, superlet method, and superlet method adjusted for 1/f by multiplying the power with the frequency which makes it look a lot more like the mtmconvol results.</div>
<div class="elementToProof" style="font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
<br class="">
</div>
<div class="elementToProof" style="font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
My settings:</div>
<div class="elementToProof ContentPasted0" style="font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
fieldtrip-20220401<br class="">
</div>
<div class="elementToProof ContentPasted0" style="font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
<br class="">
</div>
<blockquote itemscope="" itemtype="https://schemas.microsoft.com/QuotedText" style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; border-left-width: 3px; border-left-style: solid; border-color: rgb(200, 200, 200); padding-left: 1ex; margin-left: 0.8ex;" class="">
<div class="ContentPasted1 ContentPasted0" style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
cfg          <span class="Apple-converted-space"> </span><span class="">    </span><span class="">    </span> = [];</div>
<div class="ContentPasted1 ContentPasted0" style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
<div class="ContentPasted1">cfg.output    <span class="Apple-converted-space"> </span><span class="">   </span><span class="">  </span>= 'pow';</div>
<div class="ContentPasted1">cfg.keeptrials<span class="Apple-converted-space"> </span><span class="">   </span><span class="">  </span>= 'yes';</div>
<div class="ContentPasted1">cfg.channel    <span class="">   </span><span class="">  </span>= 'all';</div>
<div class="ContentPasted1">cfg.method    <span class="">    </span><span class=""> </span>= 'mtmconvol'; /'<span class="ContentPasted2" style="background-color: rgb(255, 255, 255); display: inline !important;">superlet'</span></div>
<div class="ContentPasted1">cfg.taper      <span class="Apple-converted-space"> </span><span class="">  </span><span class="">    </span>= 'dpss';</div>
<div class="ContentPasted1">cfg.foi        <span class="Apple-converted-space"> </span><span class="">  </span><span class="">      </span>= 4:.5:100;</div>
<div class="ContentPasted1">cfg.t_ftimwin  <span class="Apple-converted-space"> </span><span class="">  </span><span class="">  </span>= 7./cfg.foi; </div>
<div class="ContentPasted1">cfg.toi        <span class="Apple-converted-space"> </span><span class="">  </span><span class="">     </span>= 'all'; </div>
<div class="ContentPasted1">cfg.polyremoval<span class="Apple-converted-space"> </span><span class="">  </span><span class=""> </span>= 1; </div>
<div class="ContentPasted1">cfg.pad        <span class="Apple-converted-space"> </span><span class="">  </span><span class="">    </span>= 11; </div>
<div class="ContentPasted1">cfg.tapsmofrq  <span class="Apple-converted-space"> </span><span class="">  </span><span class=""> </span>= 0.3.*cfg.foi ; </div>
<div class="ContentPasted1"><br class="">
</div>
<div class="ContentPasted1">% for 'superlet' method</div>
<div class="ContentPasted1">cfg.width      <span class="">   </span><span class="">  </span> = 3;   </div>
<div class="ContentPasted1">cfg.gwidth    <span class="Apple-converted-space"> </span><span class="">   </span><span class="">  </span>= 3; </div>
<div class="ContentPasted1">cfg.combine    <span class="">     </span>= 'additive'; <br class="">
</div>
</div>
<div class="ContentPasted1 ContentPasted0" style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
cfg.order      <span class="Apple-converted-space"> </span><span class="">  </span><span class="">   </span>= round(linspace(1,40,numel(cfg.foi)));<br class="">
</div>
<div class="ContentPasted1 ContentPasted0" style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
<br class="">
</div>
<div class="ContentPasted0 ContentPasted1 ContentPasted3" style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
ft_freqanalysis(cfg, data);<br class="">
</div>
</blockquote>
<div class="ContentPasted1 elementToProof ContentPasted0 ContentPasted3" style="font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
<br class="">
</div>
<div class="ContentPasted1 elementToProof ContentPasted0 ContentPasted3" style="font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
I'm grateful for any input.</div>
<div class="ContentPasted1 elementToProof ContentPasted0 ContentPasted3" style="font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
<br class="">
</div>
<div class="ContentPasted1 elementToProof ContentPasted0 ContentPasted3" style="font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
Best regards,
<div class="">Martin</div>
</div>
<div class="elementToProof ContentPasted1 ContentPasted0" style="font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt; background-color: rgb(255, 255, 255);">
<br class="">
</div>
<div class="elementToProof" style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;">
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt;" class="">
<br class="">
</div>
<div id="Signature" class="">
<div class="">
<div class=""></div>
<div style="font-family: Calibri, Arial, Helvetica, sans-serif; font-size: 12pt;" class="">
<div style="margin-top: 0px; margin-bottom: 0px; font-family: Tahoma; font-size: 13px; text-align: start; color: rgb(32, 31, 30); background-color: rgb(255, 255, 255);" class="">
<font color="#333333" size="1" class=""><span lang="en-US" style="margin: 0px;" class=""><span style="font-family: Calibri, sans-serif; font-size: 12px; text-align: left; color: rgb(118, 113, 113); background-color: rgb(255, 255, 255); display: inline !important;" class="">------------</span><br class="">
</span></font></div>
<div style="margin-top: 0px; margin-bottom: 0px; font-family: Tahoma; font-size: 13px; text-align: start; color: rgb(32, 31, 30); background-color: rgb(255, 255, 255);" class="">
<font color="#333333" size="1" class=""><span lang="en-US" style="margin: 0px;" class=""><b class="">Martin Schaefer | </b></span></font><span style="font-family: Tahoma; font-size: x-small;" class="">PhD Student</span></div>
<div style="margin-top: 0px; margin-bottom: 0px; font-family: Tahoma; font-size: 13px; text-align: start; color: rgb(32, 31, 30); background-color: rgb(255, 255, 255);" class="">
<font color="#333333" size="1" class=""><span style="font-family: Tahoma; font-size: x-small; background-color: rgb(255, 255, 255); display: inline !important;" class=""><a href="https://urldefense.com/v3/__https://www.perceptionlab.se/__;!!HJOPV4FYYWzcc1jazlU!6E0MVBn8an3EeOuwe7vCNsQsy0cLjZpH2MLR-NtvwNdNIHOO6ol1OnAuFcvnb4HliBgtbubbaas5o203LnHjnfIyfMAhtNXs6kt_Bw$" class="">https://www.perceptionlab.se/</a><br class="">
</span></font></div>
<div style="margin-top: 0px; margin-bottom: 0px; font-family: Tahoma; font-size: 13px; text-align: start; color: rgb(32, 31, 30); background-color: rgb(255, 255, 255);" class="">
<font color="#333333" size="1" class="">Department of Clinical Neuroscience (CNS), K8</font></div>
<div style="margin-top: 0px; margin-bottom: 0px; font-family: Tahoma; font-size: 13px; text-align: start; color: rgb(32, 31, 30); background-color: rgb(255, 255, 255);" class="">
<font color="#333333" size="1" class="">Karolinska Institutet | 17 177 Stockholm | Nobels väg 9</font></div>
<div style="margin-top: 0px; margin-bottom: 0px; font-family: Tahoma; font-size: 13px; text-align: start; color: rgb(32, 31, 30); background-color: rgb(255, 255, 255);" class="">
<span lang="en-US" style="margin: 0px;" class=""><font color="gray" size="1" class=""><a href="mailto:artin.arshamian@ki.se" target="_blank" rel="noopener noreferrer" style="margin: 0px;" class="">martin.schaefer@ki.se</a></font></span></div>
<div style="margin-top: 0px; margin-bottom: 0px; font-family: Tahoma; font-size: 13px; text-align: start; color: rgb(32, 31, 30); background-color: rgb(255, 255, 255);" class="">
<span lang="en-US" style="margin: 0px;" class=""><font color="gray" size="1" class="">______________________________________<br class="">
Karolinska Institutet – a Medical University</font></span></div>
<br class="">
</div>
</div>
</div>
</div>
<div style="margin: 0px; font-style: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Times; -webkit-text-stroke-width: 0px; -webkit-text-stroke-color: rgb(0, 0, 0); min-height: 14px; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; text-decoration: none;" class="">
<span class="s1" style="-webkit-font-kerning: none;"></span><br class="">
</div>
<div style="margin: 0px; font-style: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Times; -webkit-text-stroke-width: 0px; -webkit-text-stroke-color: rgb(0, 0, 0); min-height: 14px; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; text-decoration: none;" class="">
<span class="s1" style="-webkit-font-kerning: none;"></span><br class="">
</div>
<div style="margin: 0px; font-style: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Times; -webkit-text-stroke-width: 0px; -webkit-text-stroke-color: rgb(0, 0, 0); letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; text-decoration: none;" class="">
<span class="s1" style="-webkit-font-kerning: none;"><i class="">När du skickar e-post till Karolinska Institutet (KI) innebär detta att KI kommer att behandla dina personuppgifter.<span class="Apple-converted-space"> </span></i><a href="https://urldefense.com/v3/__https://ki.se/medarbetare/integritetsskyddspolicy__;!!HJOPV4FYYWzcc1jazlU!6E0MVBn8an3EeOuwe7vCNsQsy0cLjZpH2MLR-NtvwNdNIHOO6ol1OnAuFcvnb4HliBgtbubbaas5o203LnHjnfIyfMAhtNWe5uWFFg$" class=""><span class="s2" style="text-decoration: underline; -webkit-font-kerning: none; color: rgb(0, 0, 238); -webkit-text-stroke-width: 0px; -webkit-text-stroke-color: rgb(0, 0, 238);">Här
 finns information om hur KI behandlar personuppgifter</span></a>.<span class="Apple-converted-space"> </span></span></div>
<div style="margin: 0px; font-style: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Times; -webkit-text-stroke-width: 0px; -webkit-text-stroke-color: rgb(0, 0, 0); min-height: 14px; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; text-decoration: none;" class="">
<span class="s1" style="-webkit-font-kerning: none;"></span><br class="">
</div>
<div style="margin: 0px; font-style: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Times; -webkit-text-stroke-width: 0px; -webkit-text-stroke-color: rgb(0, 0, 0); letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; text-decoration: none;" class="">
<span class="s1" style="-webkit-font-kerning: none;"><i class="">Sending email to Karolinska Institutet (KI) will result in KI processing your personal data.</i><span class="Apple-converted-space"> </span><a href="https://urldefense.com/v3/__https://ki.se/en/staff/data-protection-policy__;!!HJOPV4FYYWzcc1jazlU!6E0MVBn8an3EeOuwe7vCNsQsy0cLjZpH2MLR-NtvwNdNIHOO6ol1OnAuFcvnb4HliBgtbubbaas5o203LnHjnfIyfMAhtNUtA_RZmg$" class=""><span class="s2" style="text-decoration: underline; -webkit-font-kerning: none; color: rgb(0, 0, 238); -webkit-text-stroke-width: 0px; -webkit-text-stroke-color: rgb(0, 0, 238);">You
 can read more about KI’s processing of personal data here</span></a>.<span class="Apple-converted-space"> </span></span></div>
<span id="cid:FF856630-4EC1-46EA-A168-025904D6E17B" class=""><powerspectrum mtmconvol.jpg></span><span id="cid:EC5C9008-F7E9-440D-9C50-D5DE1C180251" class=""><powerspectrum superlet 1 over f adjusted.jpg></span><span id="cid:7411B2DB-6451-4479-A58C-40B34CEBAE44" class=""><powerspectrum
 superlet.jpg></span><span style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;" class="">_______________________________________________</span><br style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class="">
<span style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;" class="">fieldtrip
 mailing list</span><br style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class="">
<a href="https://mailman.science.ru.nl/mailman/listinfo/fieldtrip" style="font-family: Helvetica; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="">https://mailman.science.ru.nl/mailman/listinfo/fieldtrip</a><br style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;" class="">
<a href="https://urldefense.com/v3/__https://doi.org/10.1371/journal.pcbi.1002202__;!!HJOPV4FYYWzcc1jazlU!6E0MVBn8an3EeOuwe7vCNsQsy0cLjZpH2MLR-NtvwNdNIHOO6ol1OnAuFcvnb4HliBgtbubbaas5o203LnHjnfIyfMAhtNUSrmmIgQ$" style="font-family: Helvetica; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px;" class="">https://urldefense.com/v3/__https://doi.org/10.1371/journal.pcbi.1002202__;!!HJOPV4FYYWzcc1jazlU!6E0MVBn8an3EeOuwe7vCNsQsy0cLjZpH2MLR-NtvwNdNIHOO6ol1OnAuFcvnb4HliBgtbubbaas5o203LnHjnfIyfMAhtNUSrmmIgQ$</a><span style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none; float: none; display: inline !important;" class=""></span></div>
</blockquote>
</div>
<br class="">
</div>
</div>
</div>
<br class="">
</body>
</html>