i'm trying to run the following code:<br><br>app (file physD[]) maptest(){<br>        touch @filename(physD[0]) @filename(physD[1]);<br>}<br><br>string conditions[] = ["rest1","emblem"];<br><br>string outfilenames[];<br>

foreach cond,c in conditions{<br>        outfilenames[c] = @strcat(cond,"_physio.dat");<br>        trace(outfilenames[c]);<br>}<br><br>file f[] <array_mapper;files=outfilenames>;<br>f = maptest();<br><br>
but when i try to run it it hangs indefinitely...in my experience this *usually* means 'bad mapping' somewhere...not sure if i just have some syntactical error here or if something's up with the array_mapper (?)<br>

<br>