Re: multiple curves in LogLogPlot?
- To: mathgroup at smc.vnet.net
- Subject: [mg73451] Re: multiple curves in LogLogPlot?
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Sat, 17 Feb 2007 04:58:51 -0500 (EST)
- Organization: The Open University, Milton Keynes, UK
- References: <er3hfk$fc7$1@smc.vnet.net>
Pete wrote: > 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. Works fine on my system. In[1]:= Needs["Graphics`Graphics`"] LogLogPlot[{Exp[x], 10*Exp[x], Exp[-x]}, {x, 0, 10}]; [... one plot with multiple curves ...] In[3]:= $Version Out[3]= "5.2 for Microsoft Windows (June 20, 2005)" Regards, Jean-Marc