Re: Options in Plot
- To: mathgroup at smc.vnet.net
- Subject: [mg47166] Re: Options in Plot
- From: "Steve Luttrell" <steve1 at _removemefirst_luttrell.org.uk>
- Date: Sun, 28 Mar 2004 00:07:57 -0500 (EST)
- References: <c438il$ejf$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
You need to Evaluate rt inside ParametricPlot. rt = {PlotStyle -> RGBColor[1, 1, 0]}; ParametricPlot[{Cos[s], Sin[s]}, {s, 0, 1}, rt//Evaluate] Steve Luttrell "Seb" <sebastien.neukirch at epfl.ch> wrote in message news:c438il$ejf$1 at smc.vnet.net... > Hello, > > Why isn't this working ? > > rt = {PlotStyle -> RGBColor[1, 1, 0]}; > ParametricPlot[{Cos[s], Sin[s]}, {s, 0, 1}, rt] > > Thanks, > > Sebastien >