Re: Mesh->Full, Joined->True
- To: mathgroup at smc.vnet.net
- Subject: [mg80249] Re: [mg80202] Mesh->Full, Joined->True
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Wed, 15 Aug 2007 04:28:44 -0400 (EDT)
- Reply-to: hanlonr at cox.net
n = 20;
curve1 = {#, Sin[2 # Pi/n]} & /@ Range[0, n];
curve2 = {#, Cos[2 # Pi/n]} & /@ Range[0, n];
ListPlot[{curve1, curve2}, Joined -> True,
Epilog -> {Blue, Point /@ curve1, Red, Point /@ curve2}]
Bob Hanlon
---- Arkadiusz.Majka at gmail.com wrote:
> Hi,
>
>
> For plots of two curves
>
> ListPlot[{curve1, curve2}, Mesh->Full] I get two "dotted" curves of
> different colors. When I order to join the points
> (dots) :
>
> ListPlot[{curve1, curve2}, Mesh->Full,Joined->True]
>
> the color of points become the same. Why? How can I change it?
>
> Arek
>
>