Re: Plot problem
- To: mathgroup at smc.vnet.net
- Subject: [mg37186] Re: [mg37179] Plot problem
- From: BobHanlon at aol.com
- Date: Wed, 16 Oct 2002 14:25:07 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
funcList = {Exp[x], Sin[y], z^3}; varList = {x, y, z}; MapThread[Plot[#1, {#2, -5, 5}] &, {funcList, varList}]; Inner[Plot[#1, {#2, -5, 5}] &, funcList, varList]; Bob Hanlon In a message dated 10/15/2002 4:37:40 AM, frank.brand at t-online.de writes: >how can I solve the following problem: The task is to successively plot > >the functions given in FuncList with the accociated variable > > >FuncList = {Exp[x], Sin[y], z^3}; > >VarList = {x, y, z}; > >Do[Plot[FuncList\[LeftDoubleBracket] > i\[RightDoubleBracket], {VarList\[LeftDoubleBracket] > i\[RightDoubleBracket], -5, 5}], {i, 1, Length[VarList]}]]