<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<!--[if !mso]><style>v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style><![endif]--><style><!--
/* Font Definitions */
@font-face
        {font-family:Gulim;
        panose-1:2 11 6 0 0 1 1 1 1 1;}
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:"Malgun Gothic";
        panose-1:2 11 5 3 2 0 0 2 0 4;}
@font-face
        {font-family:"\@Malgun Gothic";}
@font-face
        {font-family:"\@Gulim";
        panose-1:2 11 6 0 0 1 1 1 1 1;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif;}
span.E-MailFormatvorlage19
        {mso-style-type:personal-reply;
        font-family:"Calibri",sans-serif;
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri",sans-serif;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:70.85pt 70.85pt 2.0cm 70.85pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="#0563C1" vlink="#954F72" style="word-wrap:break-word">
<div class="WordSection1">
<p class="MsoNormal">Hello Jeawon,<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I think if you use cfg.inputfile, this field needs to contain the path to a .mat file, not a variable in the matlab working space. If you want to load the data into the matlab working space and then run timelock analysis on this data, you
 can create a cfg structure without a field named ‘inputfile’. Instead, you put the variable containing the data as the second input variable of ft_timelockanalysis.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Your code would then look like this:<o:p></o:p></p>
<p class="MsoNormal" style="margin-left:36.0pt"><o:p> </o:p></p>
<p style="mso-margin-top-alt:0cm;margin-right:0cm;margin-bottom:0cm;margin-left:36.0pt">
<b><i><span style="font-size:10.0pt">load input</span></i></b><o:p></o:p></p>
<p style="mso-margin-top-alt:0cm;margin-right:0cm;margin-bottom:0cm;margin-left:36.0pt;cursor:text">
<b><i><span style="font-size:10.0pt">cfg = [];</span></i></b><o:p></o:p></p>
<p style="mso-margin-top-alt:0cm;margin-right:0cm;margin-bottom:0cm;margin-left:36.0pt;cursor:text">
<b><i><span style="font-size:10.0pt">cfg.channel = 'eeg';</span></i></b><o:p></o:p></p>
<p style="mso-margin-top-alt:0cm;margin-right:0cm;margin-bottom:0cm;margin-left:36.0pt;cursor:text">
<b><i><span style="font-size:10.0pt">cfg.keeptrials = 'yes';</span></i></b><o:p></o:p></p>
<p style="mso-margin-top-alt:0cm;margin-right:0cm;margin-bottom:0cm;margin-left:36.0pt;cursor:text">
<b><i><span style="font-size:10.0pt">HH_timelock = ft_timelockanalysis(cfg, input);</span></i></b><o:p></o:p></p>
<p style="mso-margin-top-alt:0cm;margin-right:0cm;margin-bottom:0cm;margin-left:36.0pt;cursor:text">
<b><i><span style="font-size:10.0pt">save HH_timelock HH_timelock;<o:p></o:p></span></i></b></p>
<p style="margin:0cm"><b><i><span style="font-size:10.0pt"><o:p> </o:p></span></i></b></p>
<p style="margin:0cm">Alternatively, you change the field ‘inputfile’:<o:p></o:p></p>
<p style="margin:0cm"><o:p> </o:p></p>
<p style="mso-margin-top-alt:0cm;margin-right:0cm;margin-bottom:0cm;margin-left:36.0pt">
<b><i><span style="font-size:10.0pt">cfg = [];</span></i></b><o:p></o:p></p>
<p style="mso-margin-top-alt:0cm;margin-right:0cm;margin-bottom:0cm;margin-left:36.0pt;cursor:text">
<b><i><span style="font-size:10.0pt">cfg.channel = 'eeg';</span></i></b><o:p></o:p></p>
<p style="mso-margin-top-alt:0cm;margin-right:0cm;margin-bottom:0cm;margin-left:36.0pt;cursor:text">
<b><i><span style="font-size:10.0pt">cfg.inputfile = ‘input.mat’;</span></i></b><o:p></o:p></p>
<p style="mso-margin-top-alt:0cm;margin-right:0cm;margin-bottom:0cm;margin-left:36.0pt;cursor:text">
<b><i><span style="font-size:10.0pt">cfg.keeptrials = 'yes';</span></i></b><o:p></o:p></p>
<p style="mso-margin-top-alt:0cm;margin-right:0cm;margin-bottom:0cm;margin-left:36.0pt;cursor:text">
<b><i><span style="font-size:10.0pt">HH_timelock = ft_timelockanalysis(cfg);</span></i></b><o:p></o:p></p>
<p style="mso-margin-top-alt:0cm;margin-right:0cm;margin-bottom:0cm;margin-left:36.0pt;cursor:text">
<b><i><span style="font-size:10.0pt">save HH_timelock HH_timelock;</span></i></b><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><o:p> </o:p></p>
<p style="margin:0cm"><o:p> </o:p></p>
<p style="margin:0cm">I hope this fixes your issues!<o:p></o:p></p>
<p style="margin:0cm"><o:p> </o:p></p>
<p style="margin:0cm">Best,<o:p></o:p></p>
<p style="margin:0cm">Elisabeth<o:p></o:p></p>
<p class="MsoNormal" style="cursor:text"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<div style="border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0cm 0cm 0cm">
<p class="MsoNormal"><b><span lang="DE">Von:</span></b><span lang="DE"> fieldtrip <fieldtrip-bounces@science.ru.nl>
<b>Im Auftrag von </b>"???" via fieldtrip<br>
<b>Gesendet:</b> Montag, 11. Juli 2022 14:21<br>
<b>An:</b> fieldtrip@science.ru.nl<br>
<b>Cc:</b> "</span><span style="font-family:"Malgun Gothic",sans-serif">오재원</span><span lang="DE">" <ann0207@snu.ac.kr><br>
<b>Betreff:</b> [FieldTrip] cluster-based permutation test ft_timelockanalysis error w/ for-loop issue<o:p></o:p></span></p>
</div>
<p class="MsoNormal"><o:p> </o:p></p>
<p style="margin:0cm"><span style="font-size:10.0pt;font-family:"Gulim",sans-serif"><o:p> </o:p></span></p>
<p style="margin:0cm;cursor:text"><span style="font-size:10.0pt;font-family:"Gulim",sans-serif"><o:p> </o:p></span></p>
<p style="margin:0cm;cursor:text"><span style="font-size:10.0pt;font-family:"Gulim",sans-serif">Hello,<o:p></o:p></span></p>
<p style="margin:0cm;cursor:text"><span style="font-size:10.0pt;font-family:"Gulim",sans-serif"><o:p> </o:p></span></p>
<p style="margin:0cm;cursor:text"><span style="font-size:10.0pt;font-family:"Gulim",sans-serif">My name is Jaewon and I was trying to conduct a cluster-based permutation test with EEG data.<o:p></o:p></span></p>
<p style="margin:0cm;cursor:text"><span style="font-size:10.0pt;font-family:"Gulim",sans-serif">Before that, I faced a problem in running ft_timelockanalysis.<o:p></o:p></span></p>
<p style="margin:0cm;cursor:text"><span style="font-size:10.0pt;font-family:"Gulim",sans-serif">I wanna know :<o:p></o:p></span></p>
<blockquote style="margin-left:30.0pt;margin-right:0cm">
<p style="margin:0cm;cursor:text"><span style="font-size:10.0pt;font-family:"Gulim",sans-serif">1. What is wrong with my code and how I can solve these errors.<o:p></o:p></span></p>
<p style="margin:0cm;cursor:text"><span style="font-size:10.0pt;font-family:"Gulim",sans-serif">2. How I can alter my code using for-loop. (I know using for-loop is not essential but just optional.. but I wanna make this code shorter and simpler with for-loop)<o:p></o:p></span></p>
<p style="margin:0cm;cursor:text"><span style="font-size:10.0pt;font-family:"Gulim",sans-serif"><o:p> </o:p></span></p>
</blockquote>
<p class="MsoNormal">To use for-loop, I tried strcat function in for-loop but this made the names of the structures a series of characters and eliminated the contents of the data.<o:p></o:p></p>
<p style="margin:0cm;cursor:text">I attach my matlab code and errors I got below.<o:p></o:p></p>
<p style="margin:0cm;cursor:text"><b>Subj_(number)_ERP_CSDdata</b> are structures containing the data of each subject.<o:p></o:p></p>
<p style="margin:0cm;cursor:text"><o:p> </o:p></p>
<p style="margin:0cm;cursor:text"><o:p> </o:p></p>
<p style="margin:0cm;cursor:text"><o:p> </o:p></p>
<blockquote style="margin-left:30.0pt;margin-right:0cm">
<p style="margin:0cm;cursor:text"><b><i><span style="font-size:10.0pt">input = table(Subj_01_ERP_CSDdata, Subj_02_ERP_CSDdata, Subj_03_ERP_CSDdata,Subj_04_ERP_CSDdata,Subj_05_ERP_CSDdata,Subj_06_ERP_CSDdata,Subj_07_ERP_CSDdata,Subj_08_ERP_CSDdata,Subj_09_ERP_CSDdata,Subj_10_ERP_CSDdata,Subj_11_ERP_CSDdata,Subj_12_ERP_CSDdata,Subj_13_ERP_CSDdata,Subj_14_ERP_CSDdata,Subj_15_ERP_CSDdata,Subj_16_ERP_CSDdata,Subj_17_ERP_CSDdata,Subj_18_ERP_CSDdata,Subj_19_ERP_CSDdata,Subj_20_ERP_CSDdata,Subj_21_ERP_CSDdata,Subj_22_ERP_CSDdata,Subj_23_ERP_CSDdata,Subj_24_ERP_CSDdata,Subj_25_ERP_CSDdata,Subj_26_ERP_CSDdata);</span></i></b><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><b><i><span style="font-size:10.0pt">input = table2cell(input);</span></i></b><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><b><i><span style="font-size:10.0pt">save input input</span></i></b><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><o:p> </o:p></p>
<p style="margin:0cm;cursor:text"><b><i><span style="font-size:10.0pt">load input</span></i></b><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><b><i><span style="font-size:10.0pt">cfg = [];</span></i></b><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><b><i><span style="font-size:10.0pt">cfg.channel = 'eeg';</span></i></b><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><b><i><span style="font-size:10.0pt">cfg.inputfile = input;</span></i></b><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><b><i><span style="font-size:10.0pt">cfg.keeptrials = 'yes';</span></i></b><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><b><i><span style="font-size:10.0pt">HH_timelock = ft_timelockanalysis(cfg);</span></i></b><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><b><i><span style="font-size:10.0pt">save HH_timelock HH_timelock;</span></i></b><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><o:p> </o:p></p>
<p style="margin:0cm;cursor:text"><span style="font-size:10.0pt">Error: loadvar (line 11)</span><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><span style="font-size:10.0pt">file name should be a string</span><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><o:p> </o:p></p>
<p style="margin:0cm;cursor:text"><span style="font-size:10.0pt">Error: ft_preamble_loadvar (line 89)</span><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><span style="font-size:10.0pt">        assign(preamble_argin{i}, loadvar(cfg.inputfile{i}, preamble_argin{i}));</span><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><o:p> </o:p></p>
<p style="margin:0cm;cursor:text"><span style="font-size:10.0pt">Error: ft_preamble (line 83)</span><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><span style="font-size:10.0pt">evalin('caller', full_cmd);</span><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><o:p> </o:p></p>
<p style="margin:0cm;cursor:text"><span style="font-size:10.0pt">Error: ft_timelockanalysis (line 88)</span><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><span style="font-size:10.0pt">ft_preamble loadvar data</span><o:p></o:p></p>
<p style="margin:0cm;cursor:text"><o:p> </o:p></p>
</blockquote>
<p class="MsoNormal">Thank you so much and have a nice day:)<o:p></o:p></p>
<p style="margin:0cm"><span style="font-size:10.0pt;font-family:"Gulim",sans-serif"><o:p> </o:p></span></p>
<p style="margin:0cm"><span style="font-size:10.0pt;font-family:"Gulim",sans-serif">Best,<o:p></o:p></span></p>
<p style="margin:0cm"><span style="font-size:10.0pt;font-family:"Gulim",sans-serif"><o:p> </o:p></span></p>
<p style="margin:0cm"><span style="font-size:10.0pt;font-family:"Gulim",sans-serif">Jaewon<o:p></o:p></span></p>
<p class="MsoNormal"><img width="1" height="1" style="width:.0104in;height:.0104in" id="_x0000_i1025" src="https://mail.snu.ac.kr:443/checkread/MTU4NjE5MDYwOA==/ZmllbGR0cmlwQHNjaWVuY2UucnUubmw=/"><o:p></o:p></p>
</div>
</body>
</html>