Re: Question on Map or Apply
- To: mathgroup at smc.vnet.net
- Subject: [mg66391] Re: Question on Map or Apply
- From: Bill Rowe <readnewsciv at earthlink.net>
- Date: Thu, 11 May 2006 02:15:50 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
On 5/10/06 at 6:33 AM, lectorz at mail.ru (LectorZ) wrote: >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. the following works In[3]:= DaysBetween[Sequence@@#]&/@list Out[3]= {74,66,287} -- To reply via email subtract one hundred and four