|
[Date Index]
[Thread Index]
[Author Index]
conditionnal rule
- To: mathgroup at smc.vnet.net
- Subject: [mg51499] conditionnal rule
- From: darkness_wizard at hotmail.com (Wishmaster7)
- Date: Wed, 20 Oct 2004 01:21:19 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
hi all !!
I want to apply a rule under a certain condition. here is the example :
myList = {{a, b}, {c, d}};
myList //. {a,x_}->{a,d}
apply this rule if Length[x]===1 (this means that x can not be a list)
I tried something like :
myList //. {a_,x_}->{c,d}/;Length[x]===1
or
myList //. {a_,x_?Length[x]===1}->{c,d}/
but it does not work.
can someone help me ?
Prev by Date:
can't MATHEMATICA simplify simple expressions?
Next by Date:
Formatting numbers for output
Previous by thread:
Re: can't MATHEMATICA simplify simple expressions?
Next by thread:
Re: conditionnal rule
|