MathGroup Archive 2001

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Two styles

  • To: mathgroup at smc.vnet.net
  • Subject: [mg30363] Re: [mg30315] Two styles
  • From: BobHanlon at aol.com
  • Date: Sun, 12 Aug 2001 02:29:52 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

In a message dated 2001/8/11 3:52:05 AM, syftech at saad.org.il writes:

>Maybe someone can tell me how to plot two series, using "MultipleListPlot"
>with two different colours and two different line thickness, with no symbols
>on the lines.
>

Needs["Graphics`MultipleListPlot`"];

(list1=Table[{x,Sin[2 Pi x]},{x,0,1,0.1}];
    list2=Table[{x,Cos[2 Pi x]},{x,0,1,0.1}]);

MultipleListPlot[list1,list2, 
    PlotJoined -> True, 
    SymbolShape -> None, 
    PlotStyle -> {
        {AbsoluteThickness[2], RGBColor[1, 0, 0]}, 
        {AbsoluteThickness[3], RGBColor[0, 0, 1]}}];


Bob Hanlon
Chantilly, VA  USA


  • Prev by Date: NURBS
  • Next by Date: factor.exe and factoring
  • Previous by thread: Two styles
  • Next by thread: spread spectrum simulation