Dashiel,<div><br></div><div>You're using curly braces {} for trial indexing; this creates a cell array, which you don't want. Try using brackets [] to form a vector:</div><div><span style="border-collapse:collapse;color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px">cfg.trials = [1,2,3,4,5,6,7,8,9,10,46];</span></div>


<div><font color="#222222" face="arial, sans-serif"><span style="border-collapse:collapse"><br></span></font></div><div><font color="#222222" face="arial, sans-serif"><span style="border-collapse:collapse">Check out <a href="http://www.mathworks.com/help/techdoc/ref/specialcharacters.html">http://www.mathworks.com/help/techdoc/ref/specialcharacters.html</a> for more matlab character syntax.</span></font></div>

<div><font color="#222222" face="arial, sans-serif"><span style="border-collapse:collapse"><br></span></font></div><div>Matt</div><div><br clear="all">--<br>Univ. of Colorado at Boulder<br>
Dept. of Psychology and Neuroscience<br><a href="mailto:matthew.mollison@colorado.edu" target="_blank">matthew.mollison@colorado.edu</a><br><a href="http://psych.colorado.edu/~mollison/" target="_blank">http://psych.colorado.edu/~mollison/</a></div>


<div><br><div class="gmail_quote">On Sun, Apr 8, 2012 at 12:56 PM, Dashiel Munding <span dir="ltr"><<a href="mailto:dashiel.munding@gmail.com" target="_blank">dashiel.munding@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


Thought an example of the error message I'm getting might be useful in<br>
diagnosing the problem. I would delve further but I'm not an<br>
experienced MATLAB user, so I don't think my investigation would be<br>
very fruitful!<br>
<br>
---<br>
<br>
Error using subsindex<br>
Function 'subsindex' is not defined for values of class 'cell'.<br>
<br>
Error in selfromraw (line 11)<br>
  data.trial  = data.trial(selrpt);<br>
<br>
Error in ft_selectdata_old (line 544)<br>
    data = selfromraw(data, 'rpt', selrpt);<br>
<br>
Error in ft_selectdata (line 45)<br>
  [varargout{1:nargout}] = ft_selectdata_old(varargin{:});<br>
<br>
Error in ft_rejectvisual (line 196)<br>
  data = ft_selectdata(data, 'rpt', cfg.trials);<br>
<div><div><br>
On 8 April 2012 20:52, Dashiel Munding <<a href="mailto:dashiel.munding@gmail.com" target="_blank">dashiel.munding@gmail.com</a>> wrote:<br>
> Hello all,<br>
><br>
> I'm trying to figure out a way of reading only selected trials into<br>
> analysis without running through ft_rejectvisual every time. I have a<br>
> list of trials that I have already rejected, and the documentation<br>
> (<a href="http://fieldtrip.fcdonders.nl/reference/ft_rejectvisual" target="_blank">http://fieldtrip.fcdonders.nl/reference/ft_rejectvisual</a>) says that I<br>
> should be able to use cfg.trials as a 1xN vector to put in a list of<br>
> those trials that I want to use :<br>
><br>
> cfg.trials      = 'all' or a selection given as a 1xN vector (default = 'all')<br>
><br>
> I've tried various formats for this vector (I'm new to both MATLAB and<br>
> fieldtrip, so this might be a simple solve) but I can't get a positive<br>
> result. I know I can save out the variable and read it in again at a<br>
> later date, but this seems like a very inefficient way of doing it if<br>
> all I need is a list of numbers, instead of a 1.5gb .m file...<br>
><br>
> Has anyone come across/solved this problem? Can anyone provide me with<br>
> an example of the syntax fieldtrip is expecting?<br>
><br>
> I've tried:<br>
><br>
> cfg.trials = {'all' '-56', '-151', '-232', '-53'};<br>
><br>
> cfg.trials = {'1','2','3','4','5','6','7','8','9','10','46'};<br>
><br>
> cfg.trials = {1,2,3,4,5,6,7,8,9,10,46};<br>
><br>
> and some other efforts to no avail!<br>
><br>
> Thanks in advance, and sorry for naivety!<br>
><br>
> Dashiel<br>
<br>
_______________________________________________<br>
fieldtrip mailing list<br>
<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.nl</a><br>
<a href="http://mailman.science.ru.nl/mailman/listinfo/fieldtrip" target="_blank">http://mailman.science.ru.nl/mailman/listinfo/fieldtrip</a><br>
</div></div></blockquote></div> <br></div>