MathGroup Archive 2001

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

Search the Archive

Re: DeleteCases

  • To: mathgroup at smc.vnet.net
  • Subject: [mg27908] Re: DeleteCases
  • From: "Paul Lutus" <nospam at nosite.com>
  • Date: Fri, 23 Mar 2001 04:31:33 -0500 (EST)
  • References: <99chk4$8bn@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

"Robert Schuerhuber" <robert.schuerhuber at gmx.at> wrote in message
news:99chk4$8bn at smc.vnet.net...
> hi!
> i've a rather simple question with the deletecases, but unfortunately i
> couldn't find a clue in the mathematica-help (again ..):
>
> i want to to use DeleteCases to remove number of lists, which are
> greater than a given limit, eg.
>
> t={1,2,3,4}
> DeleteCases[t, ????]
>
> should remove all entries greater than 2, therefore
>
> t={1,2}
>
> which pattern do i have to use?

t={1,2,3,4};

t = Select[t, #<=2&]

{1,2}

--
Paul Lutus
www.arachnoid.com





  • Prev by Date: Re: Q: DeleteCases
  • Next by Date: RE: Q: DeleteCases
  • Previous by thread: AW: Random number generation
  • Next by thread: Re: DeleteCases