MathGroup Archive 2005

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

Search the Archive

Re: Re: A question about pattern


Dear ALL,
      Thanks for the kind reply. Really appreiate it.
      :)
Daohua

On Sat, 29 Jan 2005, yehuda ben-shimol wrote:

> You need to use condition (/;)
> myList=Range[10];
> ReplaceList[myList, ({a___, b_, c_, d___} /; c > b) -> {a, 2 b, 3 c, d}]
> will return
> {{2, 6, 3, 4, 5, 6, 7, 8, 9, 10},
> {1, 4, 9, 4, 5, 6, 7, 8, 9, 10},
> {1, 2, 6, 12, 5, 6, 7, 8, 9, 10},
> {1, 2, 3, 8, 15, 6, 7, 8, 9, 10},
> {1, 2, 3, 4, 10, 18, 7, 8, 9, 10},
> {1, 2, 3, 4, 5, 12, 21, 8, 9, 10},
> {1, 2, 3, 4, 5, 6, 14, 24, 9, 10},
> {1, 2, 3, 4, 5, 6, 7, 16, 27, 10},
> {1, 2, 3, 4, 5, 6, 7, 8, 18, 30}}
>
> yehuda
>
>
> Daohua Song wrote:
>
>> Dear Group,
>>      I am just struggling by the following question: I want to build a
>> rule like this,
>>      List/.{a___,b_,c_?(#>b&),d___}->{a,2 b,3 c,d}
>>      But it doesn't work.
>>
>>      please help me! Thanks
>> DHSONG
>>
>>
>>
>


  • Prev by Date: Re: BDD
  • Next by Date: Re: Integrate a Piecewise funition, stange behaviour
  • Previous by thread: Re: A question about pattern
  • Next by thread: Re: A question about pattern