Re: Map to nested list
- To: mathgroup at smc.vnet.net
- Subject: [mg98296] Re: Map to nested list
- From: Bill Rowe <readnews at sbcglobal.net>
- Date: Sun, 5 Apr 2009 06:37:20 -0400 (EDT)
On 4/3/09 at 4:05 AM, aeoost at gmail.com (athanase) wrote: >this expression >IntegerQ/@{1,1/5} >outputs {True, False} >which operator is used for nested list? I think this is what you are looking for In[1]:= Map[IntegerQ, {{1, 1/5}, {1, 1/5}}, {2}] Out[1]= {{True, False}, {True, False}}