Re: Manipulating Solution List from NDSolve
- To: mathgroup at smc.vnet.net
- Subject: [mg112770] Re: Manipulating Solution List from NDSolve
- From: Albert Retey <awnl at gmx-topmail.de>
- Date: Thu, 30 Sep 2010 04:49:52 -0400 (EDT)
- References: <i7seo7$ppq$1@smc.vnet.net> <i7shb6$rmi$1@smc.vnet.net> <i7uskf$rhr$1@smc.vnet.net>
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