Re: building a list containing elements f(i,j)
- To: mathgroup at smc.vnet.net
- Subject: [mg71059] Re: building a list containing elements f(i,j)
- From: dh <dh at metrohm.ch>
- Date: Wed, 8 Nov 2006 06:11:24 -0500 (EST)
- References: <eimr3e$dhv$1@smc.vnet.net>
Hi, try: fun[i_]:=Array[f[i,#]&,i]; Table[fun[i],{i,0,n}]//Flatten Daniel xarnaudx at gmail.com wrote: > hi, > i want to construct a list of the form: > { f[1,1], ... f[n,m] } > So the list contains elements of the form f[i,j] with i ranging from 0 > to n, and j from 0 to somebound[i]. > > What would be the most elegant way to this? > thanks >