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: Fri, 3 Apr 2009 20:17:22 -0500 (EST)
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}}