MathGroup Archive 2009

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

Search the Archive

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}}




  • Prev by Date: Re: Please help, factorisation question
  • Next by Date: Re: Joust in Mathematica
  • Previous by thread: Re: Map to nested list
  • Next by thread: Re: Map to nested list