Re: Manipulating Solution List from NDSolve
- To: mathgroup at smc.vnet.net
- Subject: [mg112810] Re: Manipulating Solution List from NDSolve
- From: "Brian E. Lamm" <blamm64 at charter.net>
- Date: Fri, 1 Oct 2010 05:42:23 -0400 (EDT)
Worked perfectly. A personal thanks very much to you Albert. There's so much I don't know ... . Thanks again. -Brian Lamm ----- Original Message ----- From: "Albert Retey" <awnl at gmx-topmail.de> To: <mathgroup at smc.vnet.net> Sent: Thursday, September 30, 2010 4:49 AM Subject: [mg112810] [mg112770] Re: Manipulating Solution List from NDSolve > Hi, > >> Any ideas on how to create a list such as {as,bs,cs} from {a,b,c}, >> when neither has been evaluated? That is a, b, and c are just symbols >> as I would llike to create {as,bs,cs}, which would then be evaluated >> as you explained above. > > I think this should do it: > > symbols = {a, b, c}; > newsymbols = Symbol[SymbolName[#] <> "s"] & /@ symbols > > > cheers, > > albert > >