Re: How to make Excel import symbolically
- To: mathgroup at smc.vnet.net
- Subject: [mg127006] Re: How to make Excel import symbolically
- From: "Nasser M. Abbasi" <nma at 12000.org>
- Date: Sat, 23 Jun 2012 04:16:06 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <js15g0$kh4$1@smc.vnet.net>
- Reply-to: nma at 12000.org
On 6/22/2012 2:05 AM, Matti wrote: > > When I use the Import command I get > > {{{aa, bb},{cc, dd}}} > > This is not an matrix, it's something else (I don't know what). > > 2. Can I transform the {{{...}}} to a {{...}}? > In[3]:= lis={{{aa,bb},{cc,dd}}}; Flatten[lis,1] Out[4]= {{aa,bb},{cc,dd}} or In[5]:= lis[[1]] Out[5]= {{aa,bb},{cc,dd}} --Nasser