Re: multiple curves in LogLogPlot?
- To: mathgroup at smc.vnet.net
- Subject: [mg73453] Re: multiple curves in LogLogPlot?
- From: "dimitris" <dimmechan at yahoo.com>
- Date: Sat, 17 Feb 2007 04:59:56 -0500 (EST)
- References: <er3hfk$fc7$1@smc.vnet.net>
=CF/=C7 Pete =DD=E3=F1=E1=F8=E5:
> Hi: Is it possible to put multiple curves (several f(x)'s) on the same
> LogLogPlot? I've tried but it doesn't seem to accept the second
> argument. This works fine for the Plot function. Thanks in advance.
Use Show.
For example
Block[{$DisplayFunction = Identity}, Table[gr[i] = LogLogPlot[x^i, {x,
1, 3}, PlotStyle -> Hue[i/7]], {i, 5}]; ]
Show[Table[gr[i], {i, 5}], Axes -> False, Frame -> {True, True, False,
False}];
Dimitris