MathGroup Archive 1999

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

Search the Archive

Re: Q.) how can i merge LISTs.

  • To: mathgroup at smc.vnet.net
  • Subject: [mg21290] Re: [mg21284] Q.) how can i merge LISTs.
  • From: Jean-Marie Thomas <jmt at agat.net>
  • Date: Wed, 22 Dec 1999 00:34:44 -0500 (EST)
  • Organization: TeA
  • References: <199912210847.DAA05413@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Use
Flatten[{{0,0 ..}}]
or 
Sequence@@{{0,0,...}}

On Tue, 21 Dec 1999, B.S. Sohn wrote:
> In[83]:=
> bitform = IntegerDigits[{8, 10}, 2, 8]
> 
> Out[83]=
> {{0, 0, 0, 0, 1, 0, 0, 0}, {0, 0, 0, 0, 1, 0, 1, 0}}
> 
> I want to get rid of internal List form...
> 
> I will got a answer " {0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0}
> 
> How can I operate...


  • Prev by Date: Re: reading and plotting datas (x,y,z) three-dimensional ???
  • Next by Date: emmathfnt for Mathematica 3
  • Previous by thread: Q.) how can i merge LISTs.
  • Next by thread: Re: Q.) how can i merge LISTs.