On Sat, Feb 6, 2010 at 13:48, Mihael Hategan <hategan at mcs.anl.gov> wrote:
> Use an array that holds the results of all the As and pass that to B.
>
Yes, that's what I've been looking for. Thanks!
> file aout[];
> foreach v, k in someRangeOrSomething {
> aout[k] = a(v);
> }
> file bout;
> bout = b(aout);
>
>
>