<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;font-family:Calibri,Helvetica,sans-serif;" dir="ltr">
<p style="margin-top:0;margin-bottom:0">Dear EEGLABers,</p>
<p style="margin-top:0;margin-bottom:0"><br>
</p>
<p style="margin-top:0;margin-bottom:0">Im having difficulties doing something which is probably really simple, and thats specifying certain variables when calling pop_est_selModelOrder programmatically (as I am running it in a super computer). I'm trying to
 specify window length ('winlen') at the very least, but found that I cant specify the window step (winstep) either.</p>
<p style="margin-top:0;margin-bottom:0"><br>
</p>
<p style="margin-top:0;margin-bottom:0">If I ran the code:</p>
<p style="margin-top:0;margin-bottom:0"><br>
</p>
<p style="margin-top:0;margin-bottom:0"></p>
<div><span style="color: rgb(0, 111, 201);">EEG = pop_est_selModelOrder( EEG, 'nogui', 'verb',
</span><span style="color: rgb(0, 111, 201);">1</span><span style="color: rgb(0, 111, 201);">, ...</span></div>
<div><span style="color: rgb(0, 111, 201);">'winlen', 1</span><span style="color: rgb(0, 111, 201);">, 'prctWinToSample', 100</span><span style="color: rgb(0, 111, 201);">);</span></div>
<br>
<p></p>
<p style="margin-top:0;margin-bottom:0">I would get the error:</p>
<p style="margin-top:0;margin-bottom:0"><br>
</p>
<p style="margin-top:0;margin-bottom:0"></p>
<div><span style="color: rgb(255, 0, 0);">Error using arg_define (line 406)</span></div>
<div><span style="color: rgb(255, 0, 0);">Some of the specified arguments do not appear in the argument specification;</span></div>
<div><span style="color: rgb(255, 0, 0);">{setname, filename, filepath, subject, group, condition, session, comments,</span></div>
<div><span style="color: rgb(255, 0, 0);">nbchan, trials, pnts, srate, xmin, xmax, times, data, icaact, icawinv, icasphere,</span></div>
<div><span style="color: rgb(255, 0, 0);">icaweights, icachansind, chanlocs, urchanlocs, chaninfo, ref, event, urevent,</span></div>
<div><span style="color: rgb(255, 0, 0);">eventdescription, epoch, epochdescription, reject, stats, specdata, specicaact,</span></div>
<div><span style="color: rgb(255, 0, 0);">splinefile, icasplinefile, dipfit, history, saved, etc, datfile, timeseries, CAT,</span></div>
<div><span style="color: rgb(255, 0, 0);">winlen}.</span></div>
<div><br>
</div>
<div><span style="color: rgb(255, 0, 0);">Error in est_selModelOrder (line 100)</span></div>
<div><span style="color: rgb(255, 0, 0);">g = arg_define([0 1],varargin, ...</span></div>
<div><br>
</div>
<div><span style="color: rgb(255, 0, 0);">Error in arg_report>arg_report_rich (line 153)</span></div>
<div><span style="color: rgb(255, 0, 0);">    func(args{:});</span></div>
<div><br>
</div>
<div><span style="color: rgb(255, 0, 0);">Error in arg_report>do_report (line 125)</span></div>
<div><span style="color: rgb(255, 0, 0);">    feval(['arg_report_' lower(type)],func,args,have_expeval);</span></div>
<div><br>
</div>
<div><span style="color: rgb(255, 0, 0);">Error in arg_report (line 93)</span></div>
<div><span style="color: rgb(255, 0, 0);">    res = do_report(type,func,args);</span></div>
<div><br>
</div>
<div><span style="color: rgb(255, 0, 0);">Error in pop_est_selModelOrder (line 104)</span></div>
<div><span style="color: rgb(255, 0, 0);">    cfg =</span></div>
<div><span style="color: rgb(255, 0, 0);">    arg_tovals(arg_report('rich',fcnHandle,[{'EEG',ALLEEG(1)},varargin]),false);</span></div>
<br>
<p></p>
<p style="margin-top:0;margin-bottom:0">Eventually I found that if I wrote the following code:</p>
<p style="margin-top:0;margin-bottom:0"><br>
</p>
<p style="margin-top:0;margin-bottom:0"></p>
<div><span style="color: rgb(0, 111, 201);">EEG.CAT.configs.est_selModelOrder = arg_tovals( arg_report( 'rich', @est_selModelOrder));</span></div>
<div>
<div><span style="color: rgb(0, 111, 201);">EEG.CAT.configs.est_selModelOrder.modelingApproach.winlen = 1;</span></div>
<div><br>
</div>
And then ran the code without winlen:</div>
<div><br>
</div>
<div>
<div style="font-family: Calibri, Helvetica, sans-serif, EmojiFont, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Segoe UI Symbol", "Android Emoji", EmojiSymbols; font-size: 16px;">
<span style="color: rgb(0, 111, 201);">EEG = pop_est_selModelOrder( EEG, 'nogui', 'verb', </span><span style="color: rgb(0, 111, 201);">1</span><span style="color: rgb(0, 111, 201);">, ...</span></div>
<div style="font-family: Calibri, Helvetica, sans-serif, EmojiFont, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Segoe UI Symbol", "Android Emoji", EmojiSymbols; font-size: 16px;">
<span style="color: rgb(0, 111, 201);">'prctWinToSample', 100</span><span style="color: rgb(0, 111, 201);">);</span></div>
<br>
</div>
then it would run without crashes, however, I feel that I shouldnt have to do that considering it says that it is one of the possible input arguments.
<p></p>
<p style="margin-top:0;margin-bottom:0">Ive also tried this variation (just to spitball):</p>
<p style="margin-top:0;margin-bottom:0"><br>
</p>
<p style="margin-top:0;margin-bottom:0"></p>
<div style="font-family: Calibri, Helvetica, sans-serif, EmojiFont, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Segoe UI Symbol", "Android Emoji", EmojiSymbols; font-size: 16px;">
<span style="color: rgb(0, 111, 201);">EEG = pop_est_selModelOrder( EEG, 'nogui', 'verb', </span><span style="color: rgb(0, 111, 201);">1</span><span style="color: rgb(0, 111, 201);">, ...</span></div>
<div style="font-family: Calibri, Helvetica, sans-serif, EmojiFont, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Segoe UI Symbol", "Android Emoji", EmojiSymbols; font-size: 16px;">
<span style="color: rgb(0, 111, 201);">'modelingApproach', { 'winlen', 1}, 'prctWinToSample', 100</span><span style="color: rgb(0, 111, 201);">);</span></div>
<br>
<p></p>
<p style="margin-top:0;margin-bottom:0">but that obviously didnt work.</p>
<p style="margin-top:0;margin-bottom:0"><br>
</p>
<p style="margin-top:0;margin-bottom:0">I would appreciate any help on this! Let me know if you need me to write a bug report on this.</p>
<p style="margin-top:0;margin-bottom:0"><br>
</p>
<p style="margin-top:0;margin-bottom:0">Kind regards,</p>
<p style="margin-top:0;margin-bottom:0">Tyler</p>
<p style="margin-top:0;margin-bottom:0"><br>
</p>
<div id="Signature"><style type="text/css" style="display:none"> <!-- p    {margin-top:0;  margin-bottom:0} --> </style>
<div id="divtagdefaultwrapper" dir="ltr" style="font-size:12pt; color:#000000; font-family:Calibri,Helvetica,sans-serif">
<div name="divtagdefaultwrapper" style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:; margin:0">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-family:Tahoma; font-size:13px">
<div style="font-size:13px">*************************
<div style="font-family:Tahoma"><br>
</div>
<div><font face="Arial"><i>Tyler Grummett ( BBSc, BSc(Hons I))</i></font></div>
<div><font face="Arial"><i>PhD Candidate</i></font></div>
<div><font face="Arial"><i>Brain Signals Laboratory</i></font></div>
<div><font face="Arial"><i>Multimodal Recording Facility</i></font></div>
<div><font face="Arial"><i>Flinders University Tonsley Building</i></font></div>
<div><font face="Arial"><i>Rm 4.17</i></font></div>
<div><font face="Arial"><i>Ext 19573</i></font></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>