RE: Question on Map or Apply
- To: mathgroup at smc.vnet.net
- Subject: [mg66392] RE: [mg66338] Question on Map or Apply
- From: "Erickson Paul-CPTP18" <Paul.Erickson at Motorola.com>
- Date: Thu, 11 May 2006 02:15:51 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
- Thread-index: AcZ0J8oukFxbWFz4Scq7ETNuHu4IAwAgGL2g
In[9]:=
daysBetween[ a_] := DaysBetween[ a[[1]],a[[2]]]
In[10]:=
Map[ daysBetween, list]
Out[10]=
{74,66,287}
-----Original Message-----
From: LectorZ [mailto:lectorz at mail.ru]
To: mathgroup at smc.vnet.net
Subject: [mg66392] [mg66338] Question on Map or Apply
Hi guys,
I am trying to apply DaysBetween function to the following list:
list={{{2006, 1, 16}, {2006,
3, 31}}, {{2006, 1, 24}, {2006, 3, 31}}, {{2005, 6, 17}, {2006, 3,
31}}}
DaysBetween[list[[1, 1]], list[[1, 2]]] works well.
What I need is to apply DaysBetween on the whole list conaining 3
sublists and getting a new list as a result containing 3 numbers.
Thanks,
LZ