Re: Difference of numbers in the list
- To: mathgroup at smc.vnet.net
- Subject: [mg45921] Re: Difference of numbers in the list
- From: Harold.Noffke at wpafb.af.mil (Harold Noffke)
- Date: Thu, 29 Jan 2004 05:36:47 -0500 (EST)
- References: <bv83mt$ie1$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
MTMTK: You need to Flatten your nested list structure, to yield a list with no sublists, as follows ... In[11]:= list=a-b Out[11]= {{0.000207972},{0.000209777},{0.000211608},{0.000213463},{0.000215345},{0.\ 000217253},{0.000219188},{0.000221151}} In[12]:= Flatten[list] Out[12]= {0.000207972,0.000209777,0.000211608,0.000213463,0.000215345,0.000217253,0.\ 000219188,0.000221151} Regards, Harold