MathGroup Archive 2001

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

Search the Archive

Re: graphics on the same line

  • To: mathgroup at smc.vnet.net
  • Subject: [mg31386] Re: [mg31372] graphics on the same line
  • From: BobHanlon at aol.com
  • Date: Wed, 31 Oct 2001 19:59:06 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com

In a message dated 2001/10/31 4:17:30 AM, cosmicstring at yahoo.com writes:

>Is there any way to see more than one graphics on the same output line
>like
>
>[graph1]                [graph2]              [graph3]
>

Method 1:

Show[GraphicsArray[{
        Plot[Sin[x], {x,0,2Pi}, 
          DisplayFunction -> Identity], 
        Plot[Cos[x], {x,0,2Pi}, 
          DisplayFunction -> Identity], 
        Plot[Tan[x], {x,0,2Pi}, 
          DisplayFunction -> Identity] }], 
    DisplayFunction -> $DisplayFunction, 
    ImageSize -> 450];

Method 2:

Needs["Graphics`Graphics`"];

DisplayTogetherArray[
    Plot[Sin[x], {x,0,2Pi}], 
    Plot[Cos[x], {x,0,2Pi}], 
    Plot[Tan[x], {x,0,2Pi}] , 
    ImageSize -> 450];


Bob Hanlon
Chantilly, VA  USA


  • Prev by Date: Re: weibull distribution
  • Next by Date: Re: select data in formatted datafiles
  • Previous by thread: Re: graphics on the same line
  • Next by thread: Re: graphics on the same line