RE: Options in Plot
- To: mathgroup at smc.vnet.net
- Subject: [mg47161] RE: [mg47143] Options in Plot
- From: "David Park" <djmp at earthlink.net>
- Date: Sun, 28 Mar 2004 00:07:50 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Sebastien,
Attributes[ParametricPlot]
{HoldAll, Protected}
rt never gets evaluated. But you can force evaluation.
rt = {PlotStyle -> RGBColor[1, 1, 0]};
ParametricPlot[{Cos[s], Sin[s]}, {s, 0, 1}, rt // Evaluate]
If we understood the reason for your indirect usage of an option the group
might be able to suggest something better.
David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/
From: Seb [mailto:sebastien.neukirch at epfl.ch]
To: mathgroup 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