MathGroup Archive 2011

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

Search the Archive

Re: How to combine 2 list

  • To: mathgroup at smc.vnet.net
  • Subject: [mg122509] Re: How to combine 2 list
  • From: Ulrich Arndt <ulrich.arndt at data2knowledge.de>
  • Date: Sun, 30 Oct 2011 04:24:14 -0500 (EST)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • References: <201110291113.HAA05419@smc.vnet.net>

l1 = {1.11, 2.07, 2.75, 3.49, 3.79, 10.2, 11.03, 19.84, 22.07,
   23.29};

l2 = {{2011, 8, 31}, {2011, 9, 2}, {2011, 9, 6}, {2011, 9, 20}, {2011,
     9, 21}, {2011, 9, 22}, {2011, 9, 28}, {2011, 9, 30}, {2011, 10,
    4}, {2011, 10, 10}};

Transpose[{l2, l1}]

should work



Am 29.10.2011 um 13:13 schrieb John:

> I have tried to find the answer on this, I am sure it has been asked before. Can anyone help?
>
> I have 2 list:
>
> cumlativeNetProfitLoss = Drop[FoldList[Plus, 0, listNetProfitLoss], 1]
>
> {1.11, 2.07, 2.75, 3.49, 3.79, 10.2, 11.03, 19.84, 22.07, 23.29}
>
> and
>
> dateList = Reverse[dateNetProfitLoss[[All, 1]]]
> {{2011, 8, 31}, {2011, 9, 2}, {2011, 9, 6}, {2011, 9, 20}, {2011, 9, 21}, {2011, 9, 22}, {2011, 9, 28}, {2011, 9, 30}, {2011, 10, 4}, {2011, 10, 10}}
>
>
>
>
>
> How to I get:
>
> {{{2011, 8, 31}, 1.11}, {{2011, 9, 2}, 2.07}, {{2011, 9, 6}, 2.75}, {{2011, 9, 20}, 3.49}, {{2011, 9, 21}, 3.79}, {{2011, 9, 22}, 10.2}, {{2011, 9, 28}, 11.03}, {{2011, 9, 30}, 19.84}, {{2011, 10, 4}, 22.07}, {{2011, 10, 10}, 23.29}}
>
>
> Thanks in advance.
>

--
Ulrich Arndt
Mobile: +49 172 287 6630
ulrich.arndt at data2knowledge.de
www.data2knowledge.de

data2knowledge GmbH
Fahrenheitstr. 1
D-28359 Bremen

Gesch=E4ftsf=FChrung: Ulrich Arndt
Sitz der Gesellschaft: Bremen, Amtsgericht Bremen, HRB 26480 HB





  • Prev by Date: Re: How to combine 2 list
  • Next by Date: Re: Problem with Solve and NSolve
  • Previous by thread: Re: How to combine 2 list
  • Next by thread: Re: How to combine 2 list