MathGroup Archive 2004

[Date Index] [Thread Index] [Author Index]

Search the Archive

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


  • Prev by Date: Re: a bug in Det of complex matrix - Mathematica 5
  • Next by Date: Re: a bug in Det of complex matrix - Mathematica 5
  • Previous by thread: Difference of numbers in the list
  • Next by thread: Re: Difference of numbers in the list