MathGroup Archive 2002

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

Search the Archive

Re: Graphics with column

  • To: mathgroup at smc.vnet.net
  • Subject: [mg32316] Re: [mg32311] Graphics with column
  • From: BobHanlon at aol.com
  • Date: Sat, 12 Jan 2002 21:32:34 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com

In a message dated 1/12/02 6:47:41 AM, milo at dmo.fee.unicamp.br writes:

>Please, could anybody from group help me.
>
>valores = {{1.410, 725.3957435637626, 0.006203510345804021,
>0.01110028829578074},
>{1.411, 697.6105526413928, 0.006450590494884944, 0.01187714108555732},
>{1.412, 671.1522720634127, 0.006704886785475749, 0.0126992744470576},
>{1.413, 645.9477455136932, 0.006966507788368165, 0.01356864416072006},
>{1.414, 621.928086275482, 0.007235563241642594, 0.01448723770889111},
>{1.415, 599.0284027203802, 0.00751216466458695, 0.01545707004420187},
>{1.416, 577.1875426499342, 0.007796426061692158, 0.01648017896384135},
>{1.417, 556.3478551921768, 0.00808846472221158, 0.01755862011257383},
>{1.418, 536.4549690573658, 0.00838840212051199, 0.01869446164533899},
>{1.419, 517.4575860512301, 0.00869636492207979, 0.01988977858824426}};
>
>I need to do four graphics.
>The first with 1.410, 1.411, 1.412,...
>The second with 725.3957435637626, 697.6105526413928, .....
>The third with 0.006203510345804021, 0.006450590494884944,
>0.006704886785475749,....
>And the lat one with 0.01110028829578074,   0.01187714108555732,...
>
>Four graphics each one each column
>

n=1;
ListPlot[#, Frame -> True, Axes -> False,
 
        PlotJoined->True,
 
        PlotLabel-> "valores column "<>ToString[n],
 
        PlotStyle -> Hue[1/n++]]&  /@
 
    Transpose[valores];


Bob Hanlon
Chantilly, VA  USA


  • Prev by Date: What if the symbol doesn't exist?
  • Next by Date: Re: Front-End
  • Previous by thread: Graphics with column
  • Next by thread: Re: Graphics with column