Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.soft-sys.math.mathematica > #16425

Re: Simple question

From "djmpark" <djmpark@comcast.net>
Newsgroups comp.soft-sys.math.mathematica
Subject Re: Simple question
Date 2014-01-16 06:50 +0000
Message-ID <lb7vf0$3t4$1@smc.vnet.net> (permalink)
References <732260.3114.1389777827422.JavaMail.root@m03>
Organization Time-Warner Telecom

Show all headers | View raw


You could use a set of rules which you could write by hand, but here is a
method to automatically generate them.

generateRules[symbol_Symbol, vars : {_Symbol ..}] :=
 Module[{base = SymbolName[symbol], onestrings = ToString /@ vars, 
   twostrings, twotuples, fstring, fname, ffunc, zerorule, onerules, 
   tworules},
  fstring = StringTake[base, 1];
  fname = Symbol[fstring];
  ffunc = fname @@ vars;
  zerorule = Symbol[base] -> ffunc;
  onestrings = base <> # & /@ onestrings;
  onerules = 
   Symbol[#] -> D[ffunc, Symbol[StringTake[#, -1]]] & /@ onestrings;
  twotuples = Tuples[vars, 2];
  twostrings = 
   StringJoin[base, ##] & @@@ Map[ToString, twotuples, {-1}];
  tworules = 
   Thread[Symbol /@ twostrings -> (D[ffunc, Sequence @@ #] &) /@ 
      twotuples];
  Flatten[{zerorule, onerules, tworules}]
  ]

caseRules = generateRules[Ue, {x, y, z, t}];

For the replacement:

K11 Ue + (K12 - K21) Uex +  K22 Uexx + (K23 + K32) Uexy + (K13 - K31) Uey +
K33 Ueyy /.  caseRules


David Park
djmpark@comcast.net 
http://home.comcast.net/~djmpark/index.html 




From: KFUPM [mailto:hussain.alqahtani@gmail.com] 


Dear  All

I have a long expression. Below is just a short part of it:

K11 Ue + (K12 - K21) Uex +
 K22 Uexx + (K23 + K32) Uexy + (K13 - K31) Uey + K33 Ueyy

I want to replace Ue->U[x,y,z,t]. and Uex->D[U[x,y,z,t],x] and
Uexy->D[U[x,y,z,t],{x,y}] and so on. I want to make a command to scan the
expression and do the conversion autmatically. I don't want to use Replace
or ReplaceAll commands, because as I said, the command is very long and I
have so many functions to deal with.

Many thanks in advance for your help.

HMQ

Back to comp.soft-sys.math.mathematica | Previous | Next | Find similar | Unroll thread


Thread

Re: Simple question "djmpark" <djmpark@comcast.net> - 2014-01-16 06:50 +0000

csiph-web