<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-7" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Dear Vassili,<br>
<br>
yes it is possible to concatenate all trials into one Matlab array that
you can then import into EEGLAB using menu item "File > Import data
> From ASCII/float file or Matlab array". Run something like this to
load all your trials from 150 text files.<br>
<br>
for index = 1:150<br>
    filename = sprintf('myfile%3.3d.txt', index);<br>
    alltrial(index,:) = load('-ASCII', filename);<br>
end;<br>
<br>
This is not the most optimal (for speed), but this will work.<br>
Hope this help.<br>
<br>
Arno<br>
<br>
Vassilis Cutsuridis wrote:
<blockquote cite="mid000601c5f4f2$6807c5d0$5f03a8c0@persefoni"
 type="cite">
  <meta http-equiv="Content-Type" content="text/html; ">
  <meta content="MSHTML 6.00.2900.2769" name="GENERATOR">
  <style></style>
  <div><font face="Arial" size="2">Dear all,</font></div>
  <div> </div>
  <div><font face="Arial" size="2">I have 64 channel ERP recordings for
150 trials per subject. These data are saved to separate trial file
(one file per trial). Is it possible to concatenate all 150 trials to a
single file, which I will then load to EEGLAB and do further processing
with it?  </font></div>
  <div> </div>
  <div><font face="Arial" size="2">Regards,</font></div>
  <div><font face="Arial" size="2">Vassilis</font></div>
</blockquote>
<br>
</body>
</html>