|
[Date Index]
[Thread Index]
[Author Index]
Re: lists
Paul.Hanson@colorado.edu wrote:
>
> Hola!
> So, if you have a couple of lists:
> {{1},{2},{3},{4}....{n}}
> and
> {{1a},....{na}}
> and I want to combine them such that,
> {{1},{1a},{2},{2a}....{n},{na}}
>
> How do I get there? Thanks in advance for the help.
>
> Paul Hanson
>
> --
> * *
> * *
> /\ */\*
> / \ / \ /\
maybe this will help. I used row instead of column vectors, but I think
the technique is general.
list1={1,2,3,4,5};
list2={a,b,c,d,e};
In[3]:=
Flatten[Transpose[{list1,list2}]]
Out[3]=
{1,a,2,b,3,c,4,d,5,e}
--
Remove the _nospam_ in the return address to respond.
- References:
- lists
- From: Paul.Hanson@colorado.edu
Prev by Date:
Re: List Manipulation
Next by Date:
Re: D[Xc, X] = Nonsense ?
Prev by thread:
Re: lists
Next by thread:
Re: lists
|