Re: Question plotting curves.
- To: mathgroup at smc.vnet.net
- Subject: [mg43844] Re: [mg43821] Question plotting curves.
- From: "Peter Pein" <petsie at arcor.de>
- Date: Wed, 8 Oct 2003 04:48:09 -0400 (EDT)
- References: <200310070640.CAA14852@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
----- Original Message -----
From: "Juan Fuentes" <juan_fuentes_2000 at yahoo.com>
To: mathgroup at smc.vnet.net
Subject: [mg43844] [mg43821] Question plotting curves.
> Dear members of the list:
> I have the following question: Is it possible to plot at the same plot two
plots with different scales,which could be displayed one in one side and the
other at the other side.
> Thank you in advance,
> Juan
>
Something like
GraphicsArray[Plot[x^#1, {x, -1.5, 2},
PlotRange -> All, DisplayFunction -> Identity] & /@ {2, 3}];
Show[%, DisplayFunction -> $DisplayFunction, ImageSize -> 8*72];
?