Re: Plot question
- To: mathgroup at smc.vnet.net
- Subject: [mg80890] Re: Plot question
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Wed, 5 Sep 2007 02:45:18 -0400 (EDT)
- Organization: The Open University, Milton Keynes, UK
- References: <fbj2c3$nc9$1@smc.vnet.net>
Yaroslav Bulatov wrote:
> Why does the plot below make all 3 curves the same color?
>
> Plot[{a x, 2 a x, 3 a x} /. a -> 2, {x, 1, 2},
> PlotStyle -> {Red, Green, Blue}]
Try,
Plot[Evaluate[{a x, 2 a x, 3 a x} /. a -> 2], {x, 1, 2},
PlotStyle -> {Red, Green, Blue}]
Plot[Evaluate[{a x, 2 a x, 3 a x} /. a -> 2], {x, 1, 2}]
[... two colorful graphics deleted ...]
--
Jean-Marc